source: branches/blt4/examples/zoo/note/Makefile.in @ 3956

Last change on this file since 3956 was 3956, checked in by gah, 11 years ago

sync with trunk

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