1
2
3
4
5
6
7
8
9
10
11
12
|
#----------------------------------------------------------------------
# Make file for Eskil
#----------------------------------------------------------------------
VERSION = 266
# Path to the TclKits used for creating StarPacks.
TCLKIT = /home/peter/tclkit/v85
TCLKIT_LINUX = $(TCLKIT)/tclkit-linux
TCLKIT_SOLARIS = $(TCLKIT)/tclkit-solaris-sparc
TCLKIT_WIN = $(TCLKIT)/tclkit-win32.upx.exe
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
|
#----------------------------------------------------------------------
# Make file for Eskil
#----------------------------------------------------------------------
VERSION = 2661
# Path to the TclKits used for creating StarPacks.
TCLKIT = /home/peter/tclkit/v85
TCLKIT_LINUX = $(TCLKIT)/tclkit-linux
TCLKIT_SOLARIS = $(TCLKIT)/tclkit-solaris-sparc
TCLKIT_WIN = $(TCLKIT)/tclkit-win32.upx.exe
|
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Tools
NAGELFAR = nagelfar
all: setup
SRCFILES = src/eskil.tcl src/clip.tcl src/dirdiff.tcl src/help.tcl src/map.tcl \
src/print.tcl src/registry.tcl src/rev.tcl src/debug.tcl \
src/compare.tcl src/merge.tcl src/printobj.tcl src/plugin.tcl
#----------------------------------------------------------------
# Setup symbolic links from the VFS to the real files
#----------------------------------------------------------------
eskil.vfs/src/eskil.tcl:
@mkdir -p eskil.vfs/src
|
|
>
|
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Tools
NAGELFAR = nagelfar
all: setup
SRCFILES = src/eskil.tcl src/clip.tcl src/dirdiff.tcl src/help.tcl src/map.tcl \
src/print.tcl src/registry.tcl src/rev.tcl src/debug.tcl \
src/compare.tcl src/merge.tcl src/printobj.tcl src/plugin.tcl \
src/vcsvfs.tcl
#----------------------------------------------------------------
# Setup symbolic links from the VFS to the real files
#----------------------------------------------------------------
eskil.vfs/src/eskil.tcl:
@mkdir -p eskil.vfs/src
|