Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Include plugins in syntax check |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
263c36a391626775b27d814810539949 |
User & Date: | peter 2015-03-16 19:17:48.360 |
Context
2015-03-16
| ||
19:44 | Pass ::argv to plugin check-in: 354450a2ac user: peter tags: trunk | |
19:17 | Include plugins in syntax check check-in: 263c36a391 user: peter tags: trunk | |
19:12 | CSV example check-in: dd31531248 user: peter tags: trunk | |
Changes
Changes to Makefile.
︙ | ︙ | |||
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | #---------------------------------------------------------------- # Testing #---------------------------------------------------------------- spell: @cat doc/*.txt | ispell -d british -l | sort -u 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 @echo Checking... | > | | 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | #---------------------------------------------------------------- # Testing #---------------------------------------------------------------- spell: @cat doc/*.txt | ispell -d british -l | sort -u CHKFILES = $(SRCFILES) $(wildcard plugins/*.tcl) 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 @echo Checking... @for i in $(CHKFILES); do $(NAGELFAR) $(NAGELFARFLAGS) eskil_h.syntax $$i ; done test: @./tests/all.tcl $(TESTFLAGS) run: $(TCLKIT_LINUX) eskil.vfs/main.tcl |
︙ | ︙ |