28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# 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 src/preprocess.tcl src/startup.tcl src/fourway.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,
|
|
|
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# 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/compare.tcl src/merge.tcl src/printobj.tcl src/plugin.tcl \
src/vcsvfs.tcl src/preprocess.tcl src/startup.tcl src/fourway.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,
|
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
spell:
@cat doc/*.txt | ispell -d british -l | sort -u
CHKFILES = $(SRCFILES) $(wildcard plugins/*.tcl) \
eskil.vfs/lib/psmenu-1.1.tm \
eskil.vfs/lib/pstools-1.0.tm \
eskil.vfs/lib/psballoon-1.3.tm
NAGELFARFLAGS = -s syntaxdb.tcl -pkgpicky -filter "*Non constant definition*" -quiet -plugin nfplugin.tcl
# Create a common "header" file for all source files.
eskil_h.syntax: $(SRCFILES) src/eskil.syntax nfplugin.tcl
@echo Creating syntax header file...
@$(NAGELFAR) $(NAGELFARFLAGS) -header eskil_h.syntax $(SRCFILES)
|
>
|
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
spell:
@cat doc/*.txt | ispell -d british -l | sort -u
CHKFILES = $(SRCFILES) $(wildcard plugins/*.tcl) \
eskil.vfs/lib/psmenu-1.1.tm \
eskil.vfs/lib/pstools-1.0.tm \
eskil.vfs/lib/psdebug-1.0.tm \
eskil.vfs/lib/psballoon-1.3.tm
NAGELFARFLAGS = -s syntaxdb.tcl -pkgpicky -filter "*Non constant definition*" -quiet -plugin nfplugin.tcl
# Create a common "header" file for all source files.
eskil_h.syntax: $(SRCFILES) src/eskil.syntax nfplugin.tcl
@echo Creating syntax header file...
@$(NAGELFAR) $(NAGELFARFLAGS) -header eskil_h.syntax $(SRCFILES)
|