source: branches/blt4/examples/zoo/parallelepiped/Makefile.in @ 1950

Last change on this file since 1950 was 1950, checked in by gah, 14 years ago

add unit cell to molvisviewer

File size: 685 bytes
Line 
1
2bindir          = @bindir@
3datadir         = @datadir@
4datarootdir     = @datarootdir@
5exec_prefix     = @exec_prefix@
6includedir      = @includedir@
7libdir          = @libdir@
8mandir          = @mandir@
9srcdir          = @srcdir@
10prefix          = @prefix@
11
12INSTALL         = @INSTALL@
13MKDIR_P         = @MKDIR_P@
14VPATH           = $(srcdir)
15RM              = rm -f
16
17FILES           = \
18                $(srcdir)/cell.tcl \
19                $(srcdir)/tool.xml
20
21destdir         = $(prefix)/examples/zoo/cell
22
23all:
24        $(MAKE) -C examples all
25
26install:
27        $(MKDIR_P) -m 0755 $(destdir)
28        for i in $(FILES) ; do \
29          $(INSTALL) -m 0444  $$i $(destdir) ; \
30        done
31        $(MAKE) -C examples install
32
33clean:
34        $(MAKE) -C examples clean
35
36distclean:
37        $(MAKE) -C examples distclean
38        $(RM) Makefile *~
Note: See TracBrowser for help on using the repository browser.