Last change
on this file since 2080 was
2080,
checked in by mmc, 14 years ago
|
Part 1 of a major reorganization of content. Moving "instant" to "builder"
and setting up "builder" more like the "gui" part as a package. Moving the
Rappture::object stuff from the builder into the main installation, so it
can be shared by the tester as well. Moving "driver" into gui/scripts
where it belongs. Creating a new "launcher.tcl" script that decides
which of the three parts to launch based on command line options. Still
need to sort out the Makefiles to get this all right...
|
File size:
1.2 KB
|
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 | FILES = \ |
---|
25 | $(srcdir)/dragdrop.tcl \ |
---|
26 | $(srcdir)/filmstrip.tcl \ |
---|
27 | $(srcdir)/hierlist.tcl \ |
---|
28 | $(srcdir)/main.tcl \ |
---|
29 | $(srcdir)/objpath.tcl \ |
---|
30 | $(srcdir)/slideframes.tcl \ |
---|
31 | $(srcdir)/tweener.tcl |
---|
32 | |
---|
33 | IMAGEFILES = \ |
---|
34 | $(srcdir)/images/drag.xbm \ |
---|
35 | $(srcdir)/images/dragm.xbm \ |
---|
36 | $(srcdir)/images/treemn.png \ |
---|
37 | $(srcdir)/images/treepl.png \ |
---|
38 | $(srcdir)/images/warn24.png \ |
---|
39 | $(srcdir)/images/err24.png |
---|
40 | |
---|
41 | PACKAGE_VERSION = @PACKAGE_VERSION@ |
---|
42 | |
---|
43 | version = $(PACKAGE_VERSION) |
---|
44 | name = RapptureBuilder$(version) |
---|
45 | |
---|
46 | destdir = $(libdir)/$(name) |
---|
47 | |
---|
48 | all: |
---|
49 | |
---|
50 | install: install-pkg install-scripts |
---|
51 | |
---|
52 | install-pkg: |
---|
53 | $(MKDIR_P) -m 0755 $(destdir) |
---|
54 | $(INSTALL) -m 444 pkgIndex.tcl $(destdir) |
---|
55 | |
---|
56 | install-scripts: scripts |
---|
57 | $(MAKE) -C scripts install |
---|
58 | |
---|
59 | clean: |
---|
60 | $(RM) tool.xml |
---|
61 | |
---|
62 | distclean: clean |
---|
63 | $(RM) Makefile *~ |
---|
64 | |
---|
Note: See
TracBrowser
for help on using the repository browser.