source: branches/r9/pkgs/runner/Makefile.in @ 4914

Last change on this file since 4914 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@
10srcdir          = @srcdir@
11
12destdir         = $(libdir)/Rappture$(VERSION)
13
14AR              = ar
15CC              = @CC@
16CFLAGS          = @CFLAGS@
17CFLAGS_DEBUG    = @CFLAGS_DEBUG@
18CFLAGS_DEFAULT  = @CFLAGS_DEFAULT@
19CFLAGS_OPTIMIZE = @CFLAGS_OPTIMIZE@
20CXX             = @CXX@
21INSTALL         = @INSTALL@
22LIB_SEARCH_DIRS = @LIB_SEARCH_DIRS@
23LN_S            = @LN_S@
24MKDIR_P         = @MKDIR_P@
25RANLIB          = @RANLIB@
26RM              = rm -f
27SHLIB_CFLAGS    = @SHLIB_CFLAGS@
28SHLIB_LD        = @SHLIB_LD@
29SHLIB_LDFLAGS   = @SHLIB_LDFLAGS@
30SHLIB_SUFFIX    = @SHLIB_SUFFIX@
31STLIB_LD        = @STLIB_LD@
32VERSION         = @RAPPTURE_VERSION@
33
34XMLFILES        = \
35                $(srcdir)/library.xml
36
37.PHONY: src scripts
38
39all:
40        $(MAKE) -C scripts all
41
42links:
43
44install:
45        $(MKDIR_P) -m 0755 $(destdir)
46        $(INSTALL) -m 0444 pkgIndex.tcl $(destdir)
47        $(MKDIR_P) -m 0755 $(destdir)/lib
48        for i in $(XMLFILES) ; do \
49          $(INSTALL) -m 0444  $$i $(destdir)/lib ; \
50        done
51        $(MAKE) -C scripts install
52
53clean:
54        $(MAKE) -C scripts clean
55
56distclean: clean
57        $(MAKE) -C scripts distclean
58        $(RM) Makefile
59
Note: See TracBrowser for help on using the repository browser.