source: trunk/examples/app-fermi/wrapper/tcl/Makefile.in @ 1018

Last change on this file since 1018 was 1018, checked in by gah, 16 years ago

Massive changes: New directory/file layout

File size: 551 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@
15
16FILES           = \
17                $(srcdir)/fermi.tcl \
18                $(srcdir)/fermi.m \
19                $(srcdir)/tool.xml
20all:
21
22install:
23        $(INSTALL) -d $(destdir)
24        for i in $(FILES) ; do \
25          $(INSTALL) -m 444 $$i $(destdir) ; \
26        done
27
28clean:
29
30distclean: clean
31        $(RM) Makefile
Note: See TracBrowser for help on using the repository browser.