Eskil

Check-in [083132e5ee]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Corrected dependency
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 083132e5ee08982052fcd3e42a9068603efbb205
User & Date: peter 2008-09-23 20:32:39.000
Context
2008-11-06
06:52
Put height on the canvas to allow window to be small. check-in: 2809cdf7cc user: peter tags: trunk
2008-09-23
20:32
Corrected dependency check-in: 083132e5ee user: peter tags: trunk
20:32
Added entryX. check-in: 68c3acf4b9 user: peter tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to Makefile.
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)
	@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








|







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) 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