31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
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
#----------------------------------------------------------------
# Build a dependency tree to other libs needed.
# This is made in a parallell VFS structure, mimicking Eskil's.
# Thus deps.vfs can also be created by downloading an Eskil kit,
# rename it to "deps" and unwrap it with sdx.
#----------------------------------------------------------------
|
|
|
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
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 src/startup.tcl
#----------------------------------------------------------------
# Build a dependency tree to other libs needed.
# This is made in a parallell VFS structure, mimicking Eskil's.
# Thus deps.vfs can also be created by downloading an Eskil kit,
# rename it to "deps" and unwrap it with sdx.
#----------------------------------------------------------------
|
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
|
$(TCLKIT_LINUX) eskil.vfs/main.tcl
#----------------------------------------------------------------
# Coverage
#----------------------------------------------------------------
# Source files for code coverage
COVFILES = eskil.vfs/main.tcl eskil.vfs/src/rev.tcl eskil.vfs/src/eskil.tcl eskil.vfs/src/merge.tcl
IFILES = $(COVFILES:.tcl=.tcl_i)
LOGFILES = $(COVFILES:.tcl=.tcl_log)
MFILES = $(COVFILES:.tcl=.tcl_m)
# Instrument source file for code coverage
%.tcl_i: %.tcl eskil_h.syntax
@$(NAGELFAR) -instrument eskil_h.syntax $<
|
|
|
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
|
$(TCLKIT_LINUX) eskil.vfs/main.tcl
#----------------------------------------------------------------
# Coverage
#----------------------------------------------------------------
# Source files for code coverage
COVFILES = eskil.vfs/main.tcl eskil.vfs/src/rev.tcl eskil.vfs/src/eskil.tcl eskil.vfs/src/merge.tcl eskil.vfs/src/startup.tcl
IFILES = $(COVFILES:.tcl=.tcl_i)
LOGFILES = $(COVFILES:.tcl=.tcl_log)
MFILES = $(COVFILES:.tcl=.tcl_m)
# Instrument source file for code coverage
%.tcl_i: %.tcl eskil_h.syntax
@$(NAGELFAR) -instrument eskil_h.syntax $<
|