[gforth] / gforth / Attic / makefile.dos  

gforth: gforth/Attic/makefile.dos


1 : anton 1.7 #Makefile for Gforth
2 :    
3 :     #Copyright (C) 1995 Free Software Foundation, Inc.
4 :    
5 :     #This file is part of Gforth.
6 :    
7 :     #Gforth is free software; you can redistribute it and/or
8 :     #modify it under the terms of the GNU General Public License
9 :     #as published by the Free Software Foundation; either version 2
10 :     #of the License, or (at your option) any later version.
11 :    
12 :     #This program is distributed in the hope that it will be useful,
13 :     #but WITHOUT ANY WARRANTY; without even the implied warranty of
14 :     #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.#See the
15 :     #GNU General Public License for more details.
16 :    
17 :     #You should have received a copy of the GNU General Public License
18 :     #along with this program; if not, write to the Free Software
19 :     #Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 :    
21 : pazsan 1.3 # To change the values of `make' variables: instead of editing Makefiles,
22 :     # (1) if the variable is set in `config.status', edit `config.status'
23 :     # (which will cause the Makefiles to be regenerated when you run `make');
24 :     # (2) otherwise, pass the desired values on the `make' command line.
25 :    
26 :     #To do:
27 :     #use $(srcdir) to make compilation in a non-srcdir possible
28 :    
29 : anton 1.7 VERSION =0.1beta#gforth version
30 : pazsan 1.3 SHELL = command.com
31 :     RM = del
32 : pazsan 1.1 CP = copy
33 : pazsan 1.3 INSTALL = install-sh
34 :     INSTALL_PROGRAM = install-sh
35 :     INSTALL_DATA = install-sh
36 : anton 1.13 INSTALL_DIR = ./install-sh -d
37 : pazsan 1.3 LN_S = copy
38 : pazsan 1.12 GCC = gcc
39 : pazsan 1.4 CC = $(GCC)
40 : pazsan 1.1 FORTH = gforth
41 : pazsan 1.12 FORTHK = $(FORTH) -i ./kernal.fi
42 : pazsan 1.4 STRIP = strip
43 : anton 1.7 TEXI2DVI = texi2dvi
44 : anton 1.8 DVI2PS = dvips -D300
45 : pazsan 1.4 #you can get texi2html from http://asis01.cern.ch/infohtml/texi2html.html
46 :     TEXI2HTML = texi2html
47 : pazsan 1.3 MAKEINFO = makeinfo
48 : pazsan 1.4 XCFLAGS = -fforce-mem -fforce-addr -fomit-frame-pointer
49 : pazsan 1.5 XDEFINES =
50 : pazsan 1.3 SWITCHES = $(XCFLAGS) $(XDEFINES) #-DNDEBUG #turn off assertions
51 : pazsan 1.4 ENGINE_FLAGS = -fno-defer-pop -fcaller-saves
52 :     DEBUGFLAG =
53 : anton 1.7 CFLAGS = $(DEBUGFLAG) -O4 -Wall $(SWITCHES) -DDEFAULTPATH=\".\"
54 : pazsan 1.1
55 :     #John Wavrik should use -Xlinker -N to get a writable text (executable)
56 : pazsan 1.4 XLDFLAGS =
57 :     GCCLDFLAGS =
58 :     LDFLAGS = $(DEBUGFLAG) $(XLDFLAGS) $(GCCLDFLAGS)
59 : pazsan 1.3 LDLIBS = -lm -lpc
60 :    
61 : pazsan 1.4 prefix =
62 :     exec_prefix =
63 :     srcdir =
64 :     bindir = $(exec_prefix)/bin
65 : pazsan 1.3 #read-only architecture-independent files
66 : pazsan 1.4 datadir = $(prefix)/share
67 : pazsan 1.3 #read-only architecture-dependent non-ascii files
68 : pazsan 1.4 libdir = $(prefix)/lib
69 :     infodir = $(prefix)/info
70 :     mandir = $(prefix)/man/man1
71 : pazsan 1.1
72 :    
73 : anton 1.7 INCLUDES = forth.h threading.h io.h io-dos.h
74 : pazsan 1.1
75 : pazsan 1.4 KERN_SRC = main.fs search-order.fs cross.fs aliases.fs vars.fs add.fs \
76 :     errore.fs kernal.fs version.fs extend.fs tools.fs toolsext.fs
77 :    
78 : anton 1.7 FORTH_SRC = anslocal.fs add.fs assert.fs ansi.fs answords.fs blocks.fs bufio.fs checkans.fs \
79 :     code.fs colorize.fs cross.fs debug.fs debugging.fs doskey.fs ds2texi.fs \
80 : pazsan 1.2 dumpimage.fs environ.fs errore.fs etags.fs extend.fs filedump.fs \
81 :     float.fs glocals.fs glosgen.fs gray.fs hash.fs history.fs \
82 : pazsan 1.4 kernal.fs locals-test.fs look.fs main.fs makedoc.fs \
83 : anton 1.13 mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
84 : anton 1.7 other.fs prims2x.fs random.fs search-order.fs see.fs sieve.fs source.fs \
85 : anton 1.9 startup.fs site-init.fs struct.fs tools.fs toolsext.fs tt.fs vars.fs \
86 :     vt100.fs vt100key.fs wordinfo.fs wordsets.fs \
87 : anton 1.8 tester.fs coretest.fs \
88 :     bubble.fs siev.fs matrix.fs fib.fs
89 : pazsan 1.2
90 : anton 1.13 SOURCES = CVS Makefile.in configure.in configure config.sub config.guess \
91 : anton 1.9 install-sh INSTALL README ToDo BUGS model COPYING Benchres \
92 : pazsan 1.4 gforth.ds texinfo.tex gforth.1 gforth.el \
93 : pazsan 1.2 primitives engine.c main.c io.c \
94 : pazsan 1.3 m68k.h mips.h 386.h hppa.h cache.c sparc.h power.h alpha.h 32bit.h \
95 :     getopt.c getopt1.c getopt.h select.c \
96 : pazsan 1.4 ecvt.c memcmp.c strtol.c strtoul.c ansidecl.h memmove.c pow10.c \
97 : anton 1.7 strerror.c strsignal.c \
98 : pazsan 1.12 INSTALL.DOS makefile.dos mkdosmf.sed configure.bat \
99 :     startup.dos history.dos \
100 : pazsan 1.2 glosgen.glo glossaries.doc \
101 :     $(INCLUDES) $(FORTH_SRC)
102 : pazsan 1.1
103 : pazsan 1.2 RCS_FILES = ToDo model high-level
104 : pazsan 1.1
105 : pazsan 1.12 GEN = gforth version.fs
106 : pazsan 1.1
107 : pazsan 1.12 OBJECTS = engine.o main.o ecvt.o select.o strsignal.o getopt.o getopt1.o
108 : pazsan 1.1
109 :     # things that need a working forth system to be generated
110 : pazsan 1.4 FORTH_GEN0 = primitives.b primitives.i prim_labels.i aliases.fs
111 : anton 1.7 FORTH_GEN = $(FORTH_GEN0) kernl16l.fi kernl16b.fi kernl32l.fi kernl32b.fi kernl64l.fi kernl64b.fi gforth.fi
112 : pazsan 1.1 # this is used for antidependences,
113 : pazsan 1.12 FORTH_GEN1 = $(FORTH_GEN0) kernl32l.fi
114 : pazsan 1.4
115 : anton 1.7 #distributed documentation
116 :     DOCDIST = gforth.texi gforth.fns gforth.ps gforth.info*
117 : pazsan 1.2
118 : pazsan 1.12 KERNLS = kernl16b.fi- kernl16l.fi- \
119 :     kernl32b.fi- kernl32l.fi- \
120 :     kernl64b.fi- kernl64l.fi-
121 : pazsan 1.3
122 : pazsan 1.4 GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) gforth.texi gforth.dvi gforth.ps Makefile configure
123 : pazsan 1.1
124 : pazsan 1.3 #standards.info recommends this:
125 :     .SUFFIXES:
126 :     .SUFFIXES: .c .o
127 : pazsan 1.2
128 : pazsan 1.12 all: version.fs more
129 : pazsan 1.1
130 : pazsan 1.12 version.c: Makefile.in
131 :     echo char gforth_version[]="$(VERSION)" ; >$@
132 :    
133 :     version.fs: Makefile.in
134 :     $(MAKE) gforth
135 :     echo : version-string s" $(VERSION)" ; >$@
136 : pazsan 1.1
137 :     more: $(FORTH_GEN) gforth
138 :    
139 :     #from the gcc Makefile:
140 :     #"Deletion of files made during compilation.
141 :     # There are four levels of this:
142 :     # `mostlyclean', `clean', `distclean' and `realclean'.
143 :     # `mostlyclean' is useful while working on a particular type of machine.
144 :     # It deletes most, but not all, of the files made by compilation.
145 :     # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
146 :     # `clean' deletes everything made by running `make all'.
147 :     # `distclean' also deletes the files made by config.
148 :     # `realclean' also deletes everything that could be regenerated automatically."
149 :    
150 : anton 1.11 mostlyclean:
151 : pazsan 1.12 -$(RM) -rf *.s gforth.fi *.fi~ *.fi- version.fs TAGS \
152 : anton 1.11 crossdoc.fd doc.fd gforth.aux gforth.cp gforth.cps \
153 :     gforth.dvi gforth.fn gforth.ky gforth.log gforth.pg \
154 :     gforth.toc gforth.tp gforth.vr html
155 :    
156 :     clean: mostlyclean
157 :     -$(RM) -rf $(GEN) *.o
158 : pazsan 1.1
159 :     distclean: clean
160 : anton 1.10 -$(RM) machine.h kernal.fi config.cache config.log config.status Makefile
161 : pazsan 1.1
162 :     realclean: distclean
163 :     -$(RM) $(GEN_PRECIOUS)
164 :    
165 : anton 1.11 #mostlyclean, but also remove some of the stuff that is distributed
166 :     virtualclean: mostlyclean
167 :     -$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \
168 :     gforth-$(VERSION).tar.gz config.cache *~
169 :    
170 : anton 1.7 dist: $(SOURCES) $(FORTH_GEN) $(DOCDIST)
171 : pazsan 1.4 -rm -rf gforth-$(VERSION)
172 :     mkdir gforth-$(VERSION)
173 : anton 1.13 $(CP) -rp $(SOURCES) $(FORTH_GEN0) kernl16l.fi kernl16b.fi kernl32l.fi kernl32b.fi kernl64l.fi kernl64b.fi $(DOCDIST) gforth-$(VERSION)
174 : pazsan 1.4 tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION).tar.gz
175 :     -rm -rf gforth-$(VERSION)
176 :    
177 :     #a binary distribution contains the complete source distribution,
178 :     # the objects, the executable and the links. the objects are there for making
179 :     # make happy.
180 :     bindist: $(SOURCES) $(FORTH_GEN) gforth $(OBJECTS) config.status Makefile
181 :     -rm -rf gforth-$(VERSION)
182 :     mkdir gforth-$(VERSION)
183 : anton 1.13 $(CP) -rp -d $(SOURCES) config.status Makefile $(FORTH_GEN) gforth $(OBJECTS) machine.h kernal.fi gforth-$(VERSION)
184 : pazsan 1.4 strip gforth-$(VERSION)/gforth
185 :     tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-dos.tar.gz
186 :    
187 :     #makes a package with only the stuff not present in the source
188 :     #package. For installation the source package is still needed!
189 :     #This is useful if you want to distribute many binary versions in
190 :     #little space (e.g., on floppy disk): Put the source package and
191 :     #all the binonly packages you are interested in on the disk. The user
192 :     #then just has to unpack the source and his favourite binonly into the
193 :     #same directory and has a full binary distribution.
194 :     binonlydist: $(SOURCES) $(FORTH_GEN) gforth $(OBJECTS)
195 :     -rm -rf gforth-$(VERSION)
196 :     mkdir gforth-$(VERSION)
197 : anton 1.13 $(CP) -p -d config.status Makefile gforth $(OBJECTS) machine.h kernal.fi gforth-$(VERSION)
198 : pazsan 1.4 strip gforth-$(VERSION)/gforth
199 :     tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-binonly-dos.tar.gz
200 :    
201 :    
202 : pazsan 1.2
203 : pazsan 1.4 #strip gforth, because the debugging stuff is hardly useful once
204 :     # gforth manages to execute more than a few primitives
205 :    
206 : anton 1.13 install: gforth $(FORTH_SRC) kernal.fi gforth.fi gforth.1 gforth.info*
207 :     for i in $(bindir) $(mandir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(datadir)/gforth/site-forth; do \
208 :     $(INSTALL_DIR) $$i; \
209 :     done
210 : anton 1.9 touch $(datadir)/gforth/site-forth/site-init.fs
211 : anton 1.13 -$(RM) $(bindir)/gforth $(bindir)/gforth-$(VERSION)
212 : pazsan 1.4 $(INSTALL_PROGRAM) -s gforth $(bindir)
213 : anton 1.13 ln $(bindir)/gforth $(bindir)/gforth-$(VERSION)
214 : pazsan 1.3 $(INSTALL_DATA) gforth.1 $(mandir)
215 : anton 1.13 for i in gforth.info*; do $(INSTALL_DATA) $$i $(infodir); done
216 : pazsan 1.3 for i in $(FORTH_SRC); do \
217 : pazsan 1.4 $(INSTALL_DATA) $$i $(datadir)/gforth/$(VERSION); \
218 : pazsan 1.3 done
219 : pazsan 1.12 $(INSTALL_DATA) kernal.fi $(libdir)/gforth/$(VERSION)
220 :     $(FORTHK) startup.fs dumpimage.fs -e "savesystem $(libdir)/gforth/$(VERSION)/gforth.fi bye" #gforth.fi contains some path names
221 : pazsan 1.4
222 : anton 1.8
223 :     #deinstall all files specific to this version of gforth
224 :     #to uninstall version foo, type `make uninstall VERSION=foo'
225 :     uninstall:
226 :     -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)
227 : anton 1.9 @echo -e "Type\n$(RM) -rf $(bindir)/gforth $(mandir)/gforth.1 $(infodir)/gforth.info* $(datadir)/gforth $(libdir)/gforth\nto remove Gforth completely"
228 : anton 1.8
229 : pazsan 1.4 check: test
230 :     touch test
231 :    
232 : pazsan 1.12 test: gforth gforth.fi
233 : pazsan 1.4 $(FORTH) tester.fs coretest.fs -e bye
234 : anton 1.7 $(FORTH) code.fs checkans.fs -e bye
235 : pazsan 1.4 @echo 'Expect no differences'
236 :     $(FORTH) prims2x.fs -e "s\" primitives.b\" ' output-c process-file bye"| diff -c - primitives.i
237 :    
238 : pazsan 1.12 bench: gforth gforth.fi
239 : anton 1.8 @echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
240 : anton 1.9 time $(FORTH) siev.fs -e "main bye"
241 :     time $(FORTH) bubble.fs -e "main bye"
242 :     time $(FORTH) -m 160000 matrix.fs -e "main bye"
243 :     time $(FORTH) fib.fs -e "main bye"
244 : anton 1.8
245 : pazsan 1.3 dvi: gforth.dvi
246 : pazsan 1.1
247 : pazsan 1.4 gforth: $(OBJECTS)
248 : pazsan 1.1 -$(CP) gforth gforth~
249 :     $(GCC) $(LDFLAGS) $(OBJECTS) $(LDLIBS) -o $@
250 : pazsan 1.4 coff2exe $@
251 : pazsan 1.1
252 : pazsan 1.12 kernl16l.fi-: $(KERN_SRC) mach16l.fs $(FORTH_GEN0)
253 : anton 1.11 $(FORTHK) -p . -e 's" mach16l.fs"' main.fs
254 : pazsan 1.3
255 : pazsan 1.12 kernl16b.fi-: $(KERN_SRC) mach16b.fs $(FORTH_GEN0)
256 : anton 1.11 $(FORTHK) -p . -e 's" mach16b.fs"' main.fs
257 : pazsan 1.3
258 : pazsan 1.12 kernl32l.fi-: $(KERN_SRC) mach32l.fs $(FORTH_GEN0)
259 : anton 1.11 $(FORTHK) -p . -e 's" mach32l.fs"' main.fs
260 : pazsan 1.1
261 : pazsan 1.12 kernl32b.fi-: $(KERN_SRC) mach32b.fs $(FORTH_GEN0)
262 : anton 1.11 $(FORTHK) -p . -e 's" mach32b.fs"' main.fs
263 : pazsan 1.3
264 : pazsan 1.12 kernl64l.fi-: $(KERN_SRC) mach64l.fs $(FORTH_GEN0)
265 : anton 1.11 $(FORTHK) -p . -e 's" mach64l.fs"' main.fs
266 : pazsan 1.1
267 : pazsan 1.12 kernl64b.fi-: $(KERN_SRC) mach64b.fs $(FORTH_GEN0)
268 : anton 1.11 $(FORTHK) -p . -e 's" mach64b.fs"' main.fs
269 : pazsan 1.4
270 :     kernl16b.fi: $(KERNLS)
271 : pazsan 1.6 -$(CP) kernl16b.fi kernl16b.fi~
272 : pazsan 1.12 -$(CP) kernl16b.fi- kernl16b.fi
273 : pazsan 1.4
274 :    
275 :     kernl16l.fi: $(KERNLS)
276 : pazsan 1.6 -$(CP) kernl16l.fi kernl16l.fi~
277 : pazsan 1.12 -$(CP) kernl16l.fi- kernl16l.fi
278 : pazsan 1.4
279 :    
280 :     kernl32b.fi: $(KERNLS)
281 : pazsan 1.6 -$(CP) kernl32b.fi kernl32b.fi~
282 : pazsan 1.12 -$(CP) kernl32b.fi- kernl32b.fi
283 : pazsan 1.4
284 :    
285 :     kernl32l.fi: $(KERNLS)
286 : pazsan 1.6 -$(CP) kernl32l.fi kernl32l.fi~
287 : pazsan 1.12 -$(CP) kernl32l.fi- kernl32l.fi
288 :     -$(CP) kernl32l.fi kernal.fi
289 : pazsan 1.4
290 :     kernl64b.fi: $(KERNLS)
291 : pazsan 1.6 -$(CP) kernl64b.fi kernl64b.fi~
292 : pazsan 1.12 -$(CP) kernl64b.fi- kernl64b.fi
293 : pazsan 1.4
294 :    
295 :     kernl64l.fi: $(KERNLS)
296 : pazsan 1.6 -$(CP) kernl64l.fi kernl64l.fi~
297 : pazsan 1.12 -$(CP) kernl64l.fi- kernl64l.fi
298 : pazsan 1.3
299 : pazsan 1.2
300 : pazsan 1.12 gforth.fi: kernl32l.fi gforth startup.fs glocals.fs search-order.fs hash.fs float.fs debugging.fs environ.fs wordinfo.fs look.fs vt100.fs see.fs bufio.fs debug.fs history.fs vt100key.fs assert.fs source.fs blocks.fs struct.fs dumpimage.fs
301 : anton 1.7 $(FORTHK) startup.fs dumpimage.fs -e "savesystem gforth.fi bye"
302 :    
303 :     engine.s: engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES)
304 : pazsan 1.3 $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -S engine.c
305 : pazsan 1.1
306 : anton 1.7 engine.o: engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES)
307 : pazsan 1.3 $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c engine.c
308 :    
309 : anton 1.7 main.o: main.c machine.h threading.h $(INCLUDES)
310 :     $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c main.c
311 :    
312 : pazsan 1.3 strtoul.o: strtoul.c strtol.c
313 : pazsan 1.1
314 :     primitives.b: primitives
315 :     m4 primitives >$@
316 :    
317 :     primitives.i : primitives.b prims2x.fs
318 : anton 1.11 $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-c process-file bye" >$@
319 : pazsan 1.1
320 :     prim_labels.i : primitives.b prims2x.fs
321 : anton 1.11 $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-label process-file bye" >$@
322 : pazsan 1.1
323 :     aliases.fs: primitives.b prims2x.fs
324 : anton 1.11 $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-alias process-file bye" >$@
325 : pazsan 1.1
326 :     primitives.fs: primitives.b prims2x.fs
327 : anton 1.11 $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-forth process-file bye" >$@
328 : pazsan 1.1
329 : pazsan 1.4
330 :     doc.fd: makedoc.fs float.fs search-order.fs glocals.fs environ.fs \
331 :     toolsext.fs wordinfo.fs \
332 :     vt100.fs colorize.fs see.fs bufio.fs debug.fs history.fs \
333 : anton 1.7 doskey.fs vt100key.fs startup.fs assert.fs debugging.fs code.fs
334 : anton 1.11 $(FORTHK) -p . -e "s\" doc.fd\"" makedoc.fs startup.fs code.fs -e bye
335 : anton 1.7
336 :     crossdoc.fd: $(KERN_SRC) $(FORTH_GEN0)
337 : anton 1.11 $(FORTHK) -p . -e 's" mach32l.fs"' main.fs
338 : pazsan 1.4
339 :     gforth.texi: gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd
340 : anton 1.11 $(FORTHK) -p . ds2texi.fs -e "s\" gforth.ds\" r/o open-file throw ds2texi bye" >$@
341 : anton 1.7
342 :     checkdoc: gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd answords.fs
343 : anton 1.11 $(FORTHK) -p . ds2texi.fs answords.fs -e bye
344 : pazsan 1.1
345 : anton 1.11 gforth.dvi gforth.fns: gforth.texi
346 : pazsan 1.3 $(TEXI2DVI) gforth.texi
347 : pazsan 1.1
348 : pazsan 1.2 gforth.ps: gforth.dvi
349 : pazsan 1.3 $(DVI2PS) gforth.dvi -o $@
350 : anton 1.8
351 : anton 1.13 gforth.info*: gforth.texi
352 : pazsan 1.3 -$(MAKEINFO) gforth.texi
353 : pazsan 1.1
354 : pazsan 1.4 html: gforth.texi
355 :     -$(RM) html/*
356 :     -mkdir html
357 :     cd html; $(TEXI2HTML) -menu -split_node ../gforth.texi
358 :    
359 : pazsan 1.3 # For an explanation of the following Makefile rules, see node
360 :     # `Automatic Remaking' in GNU Autoconf documentation.
361 :     Makefile: Makefile.in config.status
362 :     CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
363 :     config.status: configure
364 :     ./config.status --recheck
365 :     configure: configure.in
366 :     cd $(srcdir) && autoconf
367 :    
368 : pazsan 1.4 makefile.dos: mkdosmf.sed Makefile.in
369 :     sed -f mkdosmf.sed <Makefile.in >makefile.dos
370 : pazsan 1.12
371 :     history.dos: history.fs Makefile.in
372 :     sed -e "s,~/\.gforth-history,/gforth.his,g" <history.fs >history.dos
373 : pazsan 1.6
374 :     startup.dos: startup.fs Makefile.in
375 :     sed -e "s/\\\\ include doskey/include doskey/g" \
376 : anton 1.11 -e "s/include vt100key/\\\\ include vt100key/g" <startup.fs >startup.dos

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help