source: branches/r9/lang/tcl/Makefile.in @ 5107

Last change on this file since 5107 was 4914, checked in by gah, 9 years ago
File size: 1.3 KB
Line 
1
2bindir          = @bindir@
3datadir         = @datadir@
4datarootdir     = @datarootdir@
5exec_prefix     = @exec_prefix@
6includedir      = @includedir@
7libdir          = @libdir@
8mandir          = @mandir@
9prefix          = @prefix@
10
11destdir         = $(libdir)/Rappture$(VERSION)
12
13AR              = ar
14CC              = @CC@
15CFLAGS          = @CFLAGS@
16CFLAGS_DEBUG    = @CFLAGS_DEBUG@
17CFLAGS_DEFAULT  = @CFLAGS_DEFAULT@
18CFLAGS_OPTIMIZE = @CFLAGS_OPTIMIZE@
19CXX             = @CXX@
20INSTALL         = @INSTALL@
21LIB_SEARCH_DIRS = @LIB_SEARCH_DIRS@
22LN_S            = @LN_S@
23MKDIR_P         = @MKDIR_P@
24RANLIB          = @RANLIB@
25VERSION         = @RAPPTURE_VERSION@
26RM              = rm -f
27SHLIB_CFLAGS    = @SHLIB_CFLAGS@
28SHLIB_LD        = @SHLIB_LD@
29SHLIB_LDFLAGS   = @SHLIB_LDFLAGS@
30SHLIB_SUFFIX    = @SHLIB_SUFFIX@
31STLIB_LD        = @STLIB_LD@
32
33# The script directory is moved from src/tcl.
34
35.PHONY: src scripts tests
36
37all:
38        $(MAKE) -C src all
39        $(MAKE) -C scripts all
40
41links:
42
43install:
44        $(MKDIR_P) -m 0755 $(destdir)
45        $(INSTALL) -m 0444 pkgIndex.tcl $(destdir)
46        $(MAKE) -C src install
47        $(MAKE) -C scripts install
48
49test:
50        $(MAKE) -C tests all
51
52clean:
53        $(MAKE) -C src clean
54        $(MAKE) -C tests clean
55        $(MAKE) -C scripts clean
56
57distclean: clean
58        $(MAKE) -C src distclean
59        $(MAKE) -C tests distclean
60        $(MAKE) -C scripts distclean
61        $(RM) Makefile
62
Note: See TracBrowser for help on using the repository browser.