1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Path to the TclKits used for creating StarPacks.
TCLKIT = /home/peter/tclkit
TCLKIT_LINUX = $(TCLKIT)/tclkit-linux-x86
TCLKIT_SOLARIS = $(TCLKIT)/tclkit-solaris-sparc
TCLKIT_WIN = $(TCLKIT)/tclkit-win32.upx.exe
# Path to the libraries used
STYLE = /home/peter/src/packages/style
GRIFFIN = /home/peter/tclkit/griffin.vfs/lib/griffin
PSBALLOON = /home/peter/src/psballoon
PSTOOLS = /home/peter/src/pstools
TEXTSEARCH = /home/peter/src/textsearch
#DIFFUTIL = /home/peter/src/DiffUtil/lib.vfs/DiffUtil
DIFFUTIL = /home/peter/src/DiffUtil/tcl
all: setup
#----------------------------------------------------------------
# Setup symbolic links from the VFS to the real files
#----------------------------------------------------------------
|
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Path to the TclKits used for creating StarPacks.
TCLKIT = /home/peter/tclkit
TCLKIT_LINUX = $(TCLKIT)/tclkit-linux-x86
TCLKIT_SOLARIS = $(TCLKIT)/tclkit-solaris-sparc
TCLKIT_WIN = $(TCLKIT)/tclkit-win32.upx.exe
# Path to the libraries used
STYLE = /home/peter/src/packages/style
GRIFFIN = /home/peter/tclkit/griffin.vfs/lib/griffin
PSBALLOON = /home/peter/src/psballoon
PSTOOLS = /home/peter/src/pstools
TEXTSEARCH = /home/peter/src/textsearch
DIFFUTIL = /home/peter/src/DiffUtil/lib.vfs/DiffUtil
#DIFFUTIL = /home/peter/src/DiffUtil/tcl
all: setup
#----------------------------------------------------------------
# Setup symbolic links from the VFS to the real files
#----------------------------------------------------------------
|