130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
newsrc: eskil.vfs/src/eskil.tcl
src/TAGS: $(SRCFILES)
etags -o src/TAGS --regex="/proc[ \t]+\([^ \t]+\)/\1/" $(SRCFILES) \
eskil.vfs/lib/*/*.tcl
setup: links src/TAGS
# Use this to rebuild the docs when command line changes or
# new wiki files are added.
docs:
echo "<title>Usage</title>" > htdocs/usage.wiki
echo "" >> htdocs/usage.wiki
echo "<h1>Command Line Usage</h1>" >> htdocs/usage.wiki
|
>
>
>
>
>
|
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
newsrc: eskil.vfs/src/eskil.tcl
src/TAGS: $(SRCFILES)
etags -o src/TAGS --regex="/proc[ \t]+\([^ \t]+\)/\1/" $(SRCFILES) \
eskil.vfs/lib/*/*.tcl
setup: links src/TAGS
# Check modules against local copies
tmcheck:
@ls -ltr `find . -name '*.tm'` `find /home/peter/mystuff -name '*.tm'`
# Use this to rebuild the docs when command line changes or
# new wiki files are added.
docs:
echo "<title>Usage</title>" > htdocs/usage.wiki
echo "" >> htdocs/usage.wiki
echo "<h1>Command Line Usage</h1>" >> htdocs/usage.wiki
|
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
# Testing
#----------------------------------------------------------------
spell:
@cat doc/*.txt | ispell -d british -l | sort -u
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 -plugin nfplugin.tcl
# Create a common "header" file for all source files.
eskil_h.syntax: $(SRCFILES) src/eskil.syntax nfplugin.tcl
@echo Creating syntax header file...
@$(NAGELFAR) $(NAGELFARFLAGS) -header eskil_h.syntax $(SRCFILES)
|
|
|
>
|
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
# Testing
#----------------------------------------------------------------
spell:
@cat doc/*.txt | ispell -d british -l | sort -u
CHKFILES = $(SRCFILES) $(wildcard plugins/*.tcl) \
eskil.vfs/lib/psmenu-1.1.tm \
eskil.vfs/lib/pstools-1.0.tm \
eskil.vfs/lib/psballoon-1.3.tm
NAGELFARFLAGS = -s syntaxdb.tcl -pkgpicky -filter "*Non constant definition*" -quiet -plugin nfplugin.tcl
# Create a common "header" file for all source files.
eskil_h.syntax: $(SRCFILES) src/eskil.syntax nfplugin.tcl
@echo Creating syntax header file...
@$(NAGELFAR) $(NAGELFARFLAGS) -header eskil_h.syntax $(SRCFILES)
|