17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Tools
NAGELFAR = nagelfar
all: setup
SRCFILES = src/clip.tcl src/dirdiff.tcl src/help.tcl src/map.tcl \
src/print.tcl src/registry.tcl src/rev.tcl src/eskil.tcl \
src/compare.tcl
#----------------------------------------------------------------
# Setup symbolic links from the VFS to the real files
#----------------------------------------------------------------
eskil.vfs/src/eskil.tcl:
@cd eskil.vfs/src ; for i in $(SRCFILES); do ln -fs ../../$$i ; done
|
|
|
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Tools
NAGELFAR = nagelfar
all: setup
SRCFILES = src/clip.tcl src/dirdiff.tcl src/help.tcl src/map.tcl \
src/print.tcl src/registry.tcl src/rev.tcl src/eskil.tcl \
src/compare.tcl src/merge.tcl
#----------------------------------------------------------------
# Setup symbolic links from the VFS to the real files
#----------------------------------------------------------------
eskil.vfs/src/eskil.tcl:
@cd eskil.vfs/src ; for i in $(SRCFILES); do ln -fs ../../$$i ; done
|