Last change
on this file since 2081 was
2081,
checked in by mmc, 13 years ago
|
Part 2 of the major reorganization to group all of the rappture utilties
under a single rappture command. Builds better now. Still need to fix
up the builder to work with the objects in a different location now.
|
File size:
926 bytes
|
Line | |
---|
1 | |
---|
2 | SHELL = @SHELL@ |
---|
3 | |
---|
4 | srcdir = @srcdir@ |
---|
5 | prefix = @prefix@ |
---|
6 | exec_prefix = @exec_prefix@ |
---|
7 | bindir = @bindir@ |
---|
8 | libdir = @libdir@ |
---|
9 | datadir = @datadir@ |
---|
10 | datarootdir = @datarootdir@ |
---|
11 | mandir = @mandir@ |
---|
12 | includedir = @includedir@ |
---|
13 | |
---|
14 | pkgdatadir = $(datadir)/$(PKG_DIR) |
---|
15 | pkglibdir = $(libdir)/$(PKG_DIR) |
---|
16 | pkgincludedir = $(includedir)/$(PKG_DIR) |
---|
17 | top_builddir = . |
---|
18 | |
---|
19 | MKDIR_P = @MKDIR_P@ |
---|
20 | TCL_VERSION = @TCL_VERSION@ |
---|
21 | TCLSH = $(bindir)/tclsh$(TCL_VERSION) |
---|
22 | INSTALL = @INSTALL@ |
---|
23 | |
---|
24 | PACKAGE_VERSION = @PACKAGE_VERSION@ |
---|
25 | |
---|
26 | version = $(PACKAGE_VERSION) |
---|
27 | name = RapptureTester$(version) |
---|
28 | |
---|
29 | destdir = $(libdir)/$(name) |
---|
30 | |
---|
31 | all: |
---|
32 | $(MAKE) -C scripts all |
---|
33 | |
---|
34 | install: install-pkg install-scripts |
---|
35 | |
---|
36 | install-pkg: |
---|
37 | $(MKDIR_P) -m 0755 $(destdir) |
---|
38 | $(INSTALL) -m 444 pkgIndex.tcl $(destdir) |
---|
39 | |
---|
40 | install-scripts: scripts |
---|
41 | $(MAKE) -C scripts install |
---|
42 | |
---|
43 | clean: |
---|
44 | $(MAKE) -C scripts clean |
---|
45 | $(RM) example/driver*.xml example/run*.xml |
---|
46 | |
---|
47 | distclean: clean |
---|
48 | $(RM) Makefile *~ |
---|
Note: See
TracBrowser
for help on using the repository browser.