101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
-
+
|
#----------------------------------------------------------------
# Testing
#----------------------------------------------------------------
spell:
@cat doc/*.txt | ispell -d british -l | sort -u
NAGELFARFLAGS = -s syntaxdb86.tcl -s snitdb.tcl -filter "*Non constant definition*" -quiet
NAGELFARFLAGS = -s syntaxdb86.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)
check: eskil_h.syntax
|