source: trunk/examples/zoo/number/Makefile.in @ 1944

Last change on this file since 1944 was 1944, checked in by gah, 13 years ago

add unit cell to molvisviewer

File size: 630 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)/number.tcl \
19                $(srcdir)/number1.gif \
20                $(srcdir)/number2.gif \
21                $(srcdir)/tool.xml
22
23destdir         = $(prefix)/examples/zoo/number
24
25all:
26
27install:
28        $(MKDIR_P) -m 0755 $(destdir)
29        for i in $(FILES) ; do \
30          $(INSTALL) -m 0444  $$i $(destdir) ; \
31        done
32
33clean:
34
35distclean:
36        $(RM) Makefile *~
Note: See TracBrowser for help on using the repository browser.