139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
-
+
+
+
|
#----------------------------------------------------------------
# Testing
#----------------------------------------------------------------
spell:
@cat doc/*.txt | ispell -d british -l | sort -u
CHKFILES = $(SRCFILES) $(wildcard plugins/*.tcl)
CHKFILES = $(SRCFILES) $(wildcard plugins/*.tcl) \
eskil.vfs/lib/psballoon/psballoon.tcl \
eskil.vfs/lib/pstools/pstools.tcl
NAGELFARFLAGS = -s syntaxdb.tcl -pkgpicky -filter "*Non constant definition*" -quiet
# Create a common "header" file for all source files.
eskil_h.syntax: $(SRCFILES) src/eskil.syntax
@echo Creating syntax header file...
@$(NAGELFAR) $(NAGELFARFLAGS) -header eskil_h.syntax $(SRCFILES)
|