source: branches/blt4/builder/Makefile.in @ 2936

Last change on this file since 2936 was 2170, checked in by gah, 13 years ago
File size: 899 bytes
Line 
1
2SHELL           = @SHELL@
3
4srcdir          = @srcdir@
5prefix          = @prefix@
6exec_prefix     = @exec_prefix@
7bindir          = @bindir@
8libdir          = @libdir@
9datadir         = @datadir@
10datarootdir     = @datarootdir@
11mandir          = @mandir@
12includedir      = @includedir@
13
14pkgdatadir      = $(datadir)/$(PKG_DIR)
15pkglibdir       = $(libdir)/$(PKG_DIR)
16pkgincludedir   = $(includedir)/$(PKG_DIR)
17top_builddir    = .
18
19MKDIR_P         = @MKDIR_P@
20TCL_VERSION     = @TCL_VERSION@
21TCLSH           = $(bindir)/tclsh$(TCL_VERSION)
22INSTALL         = @INSTALL@
23
24PACKAGE_VERSION = @PACKAGE_VERSION@
25
26version         = $(PACKAGE_VERSION)
27name            = RapptureBuilder$(version)
28
29destdir         = $(libdir)/$(name)
30
31all:
32        $(MAKE) -C scripts all
33
34install: install-pkg install-scripts
35
36install-pkg:
37        $(MKDIR_P) -m 0755 $(destdir)
38        $(INSTALL) -m 444 pkgIndex.tcl $(destdir)
39
40install-scripts: scripts
41        $(MAKE) -C scripts install
42
43clean:
44        $(MAKE) -C scripts clean
45        $(RM) tool.xml
46
47distclean: clean
48        $(RM) Makefile *~
Note: See TracBrowser for help on using the repository browser.