97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
-
+
|
# Testing
#----------------------------------------------------------------
spell:
@cat doc/*.txt | ispell -d british -l | sort -u
# Create a common "header" file for all source files.
eskil_h.syntax: $(SRCFILES)
eskil_h.syntax: $(SRCFILES) src/eskil.syntax
@echo Creating syntax header file...
@$(NAGELFAR) -header eskil_h.syntax $(SRCFILES)
check: eskil_h.syntax
@echo Checking...
@for i in $(SRCFILES); do $(NAGELFAR) -quiet eskil_h.syntax $$i ; done
|