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

Last change on this file was 5681, checked in by ldelgass, 9 years ago

Merge new Python examples from 1.3 branch (uq sync)

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