source: trunk/examples/app-fermi/python/Makefile.in @ 4462

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

add unit cell to molvisviewer

File size: 571 bytes
Line 
1
2bindir          = @bindir@
3datadir         = @datadir@
4datarootdir     = @datarootdir@
5exec_prefix     = @exec_prefix@
6includedir      = @includedir@
7libdir          = @libdir@
8mandir          = @mandir@
9prefix          = @prefix@
10srcdir          = @srcdir@
11
12INSTALL         = @INSTALL@
13MKDIR_P         = @MKDIR_P@
14VPATH           = @srcdir@
15
16destdir         = $(prefix)/examples/app-fermi/python
17
18FILES           = \
19                $(srcdir)/tool.xml \
20                $(srcdir)/fermi.py
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
33
Note: See TracBrowser for help on using the repository browser.