source: branches/1.7/examples/app-fermi/wrapper/tcl/Makefile.in

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

add unit cell to molvisviewer

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