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

Last change on this file was 1850, checked in by dkearney, 14 years ago

adding perl wrapper example to configure and make scripts

File size: 877 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@
13VPATH           = $(srcdir)
14SHELL           = @SHELL@
15RM              = rm -f
16
17.PHONY: cee python tcl perl
18
19all:    python tcl cee perl
20
21cee:
22        $(MAKE) -C cee all
23perl:
24        $(MAKE) -C perl all
25python:
26        $(MAKE) -C python all
27tcl:
28        $(MAKE) -C tcl all
29
30
31install:
32        $(MAKE) -C cee install
33        $(MAKE) -C perl install
34        $(MAKE) -C python install
35        $(MAKE) -C tcl install
36
37clean:
38        $(MAKE) -C cee clean
39        $(MAKE) -C perl clean
40        $(MAKE) -C python clean
41        $(MAKE) -C tcl clean
42
43distclean:
44        $(MAKE) -C cee distclean
45        $(MAKE) -C perl distclean
46        $(MAKE) -C python distclean
47        $(MAKE) -C tcl distclean
48        $(RM) Makefile
Note: See TracBrowser for help on using the repository browser.