[gforth] / gforth / Makefile.in  

gforth: gforth/Makefile.in


1 : anton 1.38 #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 : anton 1.9 # 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 : pazsan 1.1
26 : anton 1.9 #To do:
27 :     #use $(srcdir) to make compilation in a non-srcdir possible
28 :    
29 : anton 1.51 VERSION =0.2.0#gforth version
30 : anton 1.9 SHELL = /bin/sh
31 : pazsan 1.4 RM = rm
32 :     CP = cp
33 : anton 1.9 INSTALL = @INSTALL@
34 :     INSTALL_PROGRAM = @INSTALL_PROGRAM@
35 :     INSTALL_DATA = @INSTALL_DATA@
36 : anton 1.49 INSTALL_DIR = ./install-sh -d
37 : anton 1.9 LN_S = @LN_S@
38 : pazsan 1.48 GCC = @CC@
39 : anton 1.23 CC = $(GCC)
40 : anton 1.9 FORTH = ./gforth
41 : pazsan 1.65 FORTHK = $(FORTH) -i ./kernel.fi
42 : anton 1.22 STRIP = strip
43 : anton 1.32 TEXI2DVI = texi2dvi
44 : anton 1.38 DVI2PS = dvips -D300
45 : anton 1.15 #you can get texi2html from http://asis01.cern.ch/infohtml/texi2html.html
46 :     TEXI2HTML = texi2html
47 : anton 1.11 MAKEINFO = makeinfo
48 : anton 1.9 XCFLAGS = @CFLAGS@
49 :     XDEFINES = @DEFS@
50 : anton 1.12 SWITCHES = $(XCFLAGS) $(XDEFINES) #-DNDEBUG #turn off assertions
51 : pazsan 1.48 ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves
52 : pazsan 1.30 DEBUGFLAG = @DEBUGFLAG@
53 : anton 1.42 CFLAGS = $(DEBUGFLAG) -O4 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(libdir)/gforth/site-forth:$(datadir)/gforth/site-forth:$(libdir)/gforth/$(VERSION):$(datadir)/gforth/$(VERSION):.\"
54 : pazsan 1.1
55 :     #John Wavrik should use -Xlinker -N to get a writable text (executable)
56 : pazsan 1.30 XLDFLAGS = @LDFLAGS@
57 :     GCCLDFLAGS = @GCCLDFLAGS@
58 :     LDFLAGS = $(DEBUGFLAG) $(XLDFLAGS) $(GCCLDFLAGS)
59 : anton 1.9 LDLIBS = @LIBS@
60 :    
61 : anton 1.52 VPATH = @srcdir@
62 : anton 1.9 prefix = @prefix@
63 :     exec_prefix = @exec_prefix@
64 :     srcdir = @srcdir@
65 :     bindir = $(exec_prefix)/bin
66 :     #read-only architecture-independent files
67 :     datadir = $(prefix)/share
68 :     #read-only architecture-dependent non-ascii files
69 :     libdir = $(prefix)/lib
70 :     infodir = $(prefix)/info
71 : anton 1.52 mandir = $(prefix)/man
72 :     man1dir= $(mandir)/man1
73 :     man1ext= .1
74 :     #older emacses have their site-lisp in $(libdir)/emacs/
75 :     emacssitelispdir=$(datadir)/emacs/site-lisp
76 : pazsan 1.1
77 : pazsan 1.65 INCLUDES = forth.h threading.h io.h
78 : pazsan 1.1
79 : anton 1.52 KERN_SRC = \
80 :     add.fs \
81 :     aliases.fs \
82 :     cross.fs \
83 :     errore.fs \
84 :     extend.fs \
85 : pazsan 1.65 kernel.fs \
86 : anton 1.52 main.fs \
87 :     search-order.fs \
88 : pazsan 1.63 special.fs \
89 : anton 1.52 tools.fs \
90 :     toolsext.fs \
91 : pazsan 1.65 vars.fs
92 : anton 1.52
93 :     GFORTH_FI_SRC = \
94 :     assert.fs \
95 : pazsan 1.60 blockedit.fb \
96 : anton 1.52 blocks.fs \
97 :     bufio.fs \
98 :     debug.fs \
99 :     debugging.fs \
100 :     dumpimage.fs \
101 :     environ.fs \
102 :     float.fs \
103 :     glocals.fs \
104 :     hash.fs \
105 :     history.fs \
106 : anton 1.64 intcomp.fs \
107 : anton 1.52 look.fs \
108 :     search-order.fs \
109 :     see.fs \
110 :     source.fs \
111 :     startup.fs \
112 :     struct.fs \
113 :     stuff.fs \
114 : pazsan 1.60 tasker.fs \
115 : anton 1.52 termsize.fs \
116 :     vt100.fs \
117 :     vt100key.fs \
118 :     wordinfo.fs
119 :    
120 :     FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_SRC) \
121 : pazsan 1.56 ansi.fs answords.fs \
122 : anton 1.52 checkans.fs \
123 :     code.fs colorize.fs \
124 :     doskey.fs ds2texi.fs \
125 :     etags.fs filedump.fs \
126 :     glosgen.fs gray.fs \
127 :     makedoc.fs \
128 : anton 1.49 mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
129 : anton 1.52 more.fs other.fs prims2x.fs random.fs \
130 :     sieve.fs \
131 :     site-init.fs \
132 :     tt.fs sokoban.fs \
133 :     wordsets.fs \
134 : anton 1.61 tester.fs coretest.fs postponetest.fs dbltest.fs \
135 : pazsan 1.65 bubble.fs siev.fs matrix.fs fib.fs \
136 :     oof.fs oofsampl.fs
137 : pazsan 1.1
138 : pazsan 1.56 SOURCES = CVS compat Makefile.in configure.in configure config.sub config.guess \
139 : pazsan 1.65 acconfig.h config.h.in stamp-h.in \
140 : anton 1.40 install-sh INSTALL README ToDo BUGS model COPYING Benchres \
141 : pazsan 1.28 gforth.ds texinfo.tex gforth.1 gforth.el \
142 : anton 1.62 primitives engine.c main.c io.c memcasecmp.c \
143 : pazsan 1.17 m68k.h mips.h 386.h hppa.h cache.c sparc.h power.h alpha.h 32bit.h \
144 : anton 1.14 getopt.c getopt1.c getopt.h select.c \
145 : anton 1.24 ecvt.c memcmp.c strtol.c strtoul.c ansidecl.h memmove.c pow10.c \
146 : pazsan 1.56 strerror.c strsignal.c dblsub.c \
147 : pazsan 1.65 INSTALL.DOS makefile.dos mkdosmf.sed configure.bat dosconf.h \
148 : pazsan 1.48 startup.dos history.dos \
149 : pazsan 1.6 glosgen.glo glossaries.doc \
150 : pazsan 1.1 $(INCLUDES) $(FORTH_SRC)
151 :    
152 : anton 1.5 RCS_FILES = ToDo model high-level
153 : pazsan 1.1
154 : pazsan 1.48 GEN = gforth version.fs
155 : pazsan 1.1
156 : anton 1.62 OBJECTS = engine.o io.o main.o memcasecmp.o @LIBOBJS@ @getopt_long@
157 : pazsan 1.1
158 :     # things that need a working forth system to be generated
159 : anton 1.15 FORTH_GEN0 = primitives.b primitives.i prim_labels.i aliases.fs
160 : pazsan 1.65 FORTH_GEN = $(FORTH_GEN0) @KERNEL@ gforth.fi
161 : pazsan 1.1 # this is used for antidependences,
162 : pazsan 1.65 FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@
163 : anton 1.5
164 : anton 1.38 #distributed documentation
165 :     DOCDIST = gforth.texi gforth.fns gforth.ps gforth.info*
166 : anton 1.5
167 : pazsan 1.48 KERNLS = kernl16b.fi- kernl16l.fi- \
168 :     kernl32b.fi- kernl32l.fi- \
169 :     kernl64b.fi- kernl64l.fi-
170 : pazsan 1.30
171 :     GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) gforth.texi gforth.dvi gforth.ps Makefile configure
172 : pazsan 1.1
173 : anton 1.9 #standards.info recommends this:
174 :     .SUFFIXES:
175 :     .SUFFIXES: .c .o
176 :    
177 : pazsan 1.48 all: version.fs more
178 : pazsan 1.1
179 : pazsan 1.48 version.c: Makefile.in
180 :     echo "char gforth_version[]=\"$(VERSION)\" ;" >$@
181 :    
182 :     version.fs: Makefile.in
183 :     $(MAKE) gforth
184 :     echo ": version-string s\" $(VERSION)\" ;" >$@
185 : pazsan 1.2
186 : pazsan 1.3 more: $(FORTH_GEN) gforth
187 : pazsan 1.2
188 : pazsan 1.1 #from the gcc Makefile:
189 :     #"Deletion of files made during compilation.
190 :     # There are four levels of this:
191 :     # `mostlyclean', `clean', `distclean' and `realclean'.
192 :     # `mostlyclean' is useful while working on a particular type of machine.
193 :     # It deletes most, but not all, of the files made by compilation.
194 :     # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
195 :     # `clean' deletes everything made by running `make all'.
196 :     # `distclean' also deletes the files made by config.
197 :     # `realclean' also deletes everything that could be regenerated automatically."
198 :    
199 : anton 1.45 mostlyclean:
200 : pazsan 1.48 -$(RM) -rf *.s gforth.fi *.fi~ *.fi- version.fs TAGS \
201 : anton 1.45 crossdoc.fd doc.fd gforth.aux gforth.cp gforth.cps \
202 :     gforth.dvi gforth.fn gforth.ky gforth.log gforth.pg \
203 :     gforth.toc gforth.tp gforth.vr html
204 :    
205 :     clean: mostlyclean
206 :     -$(RM) -rf $(GEN) *.o
207 : pazsan 1.1
208 :     distclean: clean
209 : pazsan 1.65 -$(RM) machine.h kernel.fi config.cache config.log config.status config.h Makefile
210 : pazsan 1.1
211 : anton 1.53 #realclean is useless, but dangerous, so it's commented out
212 :     #realclean: distclean
213 :     # -$(RM) $(GEN_PRECIOUS)
214 : pazsan 1.1
215 : anton 1.45 #mostlyclean, but also remove some of the stuff that is distributed
216 :     virtualclean: mostlyclean
217 :     -$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \
218 : anton 1.59 gforth-$(VERSION).tar.gz config.cache *~ */*~
219 : anton 1.45
220 : anton 1.38 dist: $(SOURCES) $(FORTH_GEN) $(DOCDIST)
221 : anton 1.21 -rm -rf gforth-$(VERSION)
222 :     mkdir gforth-$(VERSION)
223 : pazsan 1.65 $(CP) -rp $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) gforth-$(VERSION)
224 : anton 1.21 tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION).tar.gz
225 : pazsan 1.30 -rm -rf gforth-$(VERSION)
226 : pazsan 1.1
227 : anton 1.22 #a binary distribution contains the complete source distribution,
228 :     # the objects, the executable and the links. the objects are there for making
229 :     # make happy.
230 :     bindist: $(SOURCES) $(FORTH_GEN) gforth $(OBJECTS) config.status Makefile
231 :     -rm -rf gforth-$(VERSION)
232 :     mkdir gforth-$(VERSION)
233 : pazsan 1.65 $(CP) -rp -d $(SOURCES) config.status Makefile $(FORTH_GEN) gforth $(OBJECTS) machine.h kernel.fi gforth-$(VERSION)
234 : anton 1.22 strip gforth-$(VERSION)/gforth
235 :     tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-@host@.tar.gz
236 :    
237 :     #makes a package with only the stuff not present in the source
238 :     #package. For installation the source package is still needed!
239 :     #This is useful if you want to distribute many binary versions in
240 :     #little space (e.g., on floppy disk): Put the source package and
241 :     #all the binonly packages you are interested in on the disk. The user
242 :     #then just has to unpack the source and his favourite binonly into the
243 :     #same directory and has a full binary distribution.
244 :     binonlydist: $(SOURCES) $(FORTH_GEN) gforth $(OBJECTS)
245 :     -rm -rf gforth-$(VERSION)
246 :     mkdir gforth-$(VERSION)
247 : pazsan 1.65 $(CP) -p -d config.status Makefile gforth $(OBJECTS) machine.h kernel.fi gforth-$(VERSION)
248 : anton 1.22 strip gforth-$(VERSION)/gforth
249 :     tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-binonly-@host@.tar.gz
250 :    
251 :    
252 :    
253 : anton 1.15 #strip gforth, because the debugging stuff is hardly useful once
254 :     # gforth manages to execute more than a few primitives
255 :    
256 : pazsan 1.65 install: gforth $(FORTH_SRC) kernel.fi gforth.fi gforth.1 gforth.info* primitives gforth.TAGS
257 : anton 1.49 for i in $(bindir) $(mandir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(datadir)/gforth/site-forth; do \
258 :     $(INSTALL_DIR) $$i; \
259 :     done
260 : anton 1.42 touch $(datadir)/gforth/site-forth/site-init.fs
261 : anton 1.49 -$(RM) $(bindir)/gforth $(bindir)/gforth-$(VERSION)
262 : anton 1.15 $(INSTALL_PROGRAM) -s gforth $(bindir)
263 : anton 1.49 ln $(bindir)/gforth $(bindir)/gforth-$(VERSION)
264 : anton 1.9 $(INSTALL_DATA) gforth.1 $(mandir)
265 : anton 1.49 for i in gforth.info*; do $(INSTALL_DATA) $$i $(infodir); done
266 : anton 1.50 for i in $(FORTH_SRC) primitives; do \
267 : anton 1.27 $(INSTALL_DATA) $$i $(datadir)/gforth/$(VERSION); \
268 : anton 1.9 done
269 : pazsan 1.65 $(INSTALL_DATA) kernel.fi $(libdir)/gforth/$(VERSION)
270 : pazsan 1.48 $(FORTHK) startup.fs dumpimage.fs -e "savesystem $(libdir)/gforth/$(VERSION)/gforth.fi bye" #gforth.fi contains some path names
271 : pazsan 1.63 sed s:$(srcdir)/:$(datadir)/gforth/$(VERSION)/: gforth.TAGS >TAGS; $(INSTALL_DATA) TAGS $(datadir)/gforth/$(VERSION)
272 : anton 1.52 if test -d $(emacssitelispdir); then \
273 :     $(INSTALL_DATA) gforth.el $(emacssitelispdir); \
274 : pazsan 1.55 else \
275 : anton 1.52 echo "please install gforth.el in your .../emacs/site-lisp directory"; \
276 :     fi
277 : anton 1.40
278 :     #deinstall all files specific to this version of gforth
279 :     #to uninstall version foo, type `make uninstall VERSION=foo'
280 :     uninstall:
281 :     -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)
282 :     @echo -e "Type\n$(RM) -rf $(bindir)/gforth $(mandir)/gforth.1 $(infodir)/gforth.info* $(datadir)/gforth $(libdir)/gforth\nto remove Gforth completely"
283 :    
284 : anton 1.26 check: test
285 : pazsan 1.56 touch test
286 : pazsan 1.30
287 : anton 1.46 test: gforth gforth.fi
288 : anton 1.61 $(FORTH) tester.fs coretest.fs postponetest.fs dbltest.fs -e bye
289 : anton 1.38 $(FORTH) code.fs checkans.fs -e bye
290 : anton 1.21 @echo 'Expect no differences'
291 :     $(FORTH) prims2x.fs -e "s\" primitives.b\" ' output-c process-file bye"| diff -c - primitives.i
292 :    
293 : anton 1.46 bench: gforth gforth.fi
294 : anton 1.40 @echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
295 :     time $(FORTH) siev.fs -e "main bye"
296 :     time $(FORTH) bubble.fs -e "main bye"
297 : anton 1.41 time $(FORTH) -m 160000 matrix.fs -e "main bye"
298 : anton 1.40 time $(FORTH) fib.fs -e "main bye"
299 :    
300 : anton 1.9 dvi: gforth.dvi
301 : anton 1.5
302 : anton 1.21 gforth: $(OBJECTS)
303 : pazsan 1.4 -$(CP) gforth gforth~
304 : pazsan 1.1 $(GCC) $(LDFLAGS) $(OBJECTS) $(LDLIBS) -o $@
305 : anton 1.9 @MAKE_EXE@
306 : pazsan 1.1
307 : pazsan 1.65 kernl16l.fi-: $(KERN_SRC) version.fs mach16l.fs $(FORTH_GEN0)
308 : pazsan 1.63 $(FORTHK) -p . -e 's" mach16l.fs"' main.fs -e "save-cross kernl16l.fi- $(bindir)/gforth-$(VERSION) bye"
309 : pazsan 1.13
310 : pazsan 1.65 kernl16b.fi-: $(KERN_SRC) version.fs mach16b.fs $(FORTH_GEN0)
311 : pazsan 1.63 $(FORTHK) -p . -e 's" mach16b.fs"' main.fs -e "save-cross kernl16b.fi- $(bindir)/gforth-$(VERSION) bye"
312 : pazsan 1.13
313 : pazsan 1.65 kernl32l.fi-: $(KERN_SRC) version.fs mach32l.fs $(FORTH_GEN0)
314 : pazsan 1.63 $(FORTHK) -p . -e 's" mach32l.fs"' main.fs -e "save-cross kernl32l.fi- $(bindir)/gforth-$(VERSION) bye"
315 : pazsan 1.1
316 : pazsan 1.65 kernl32b.fi-: $(KERN_SRC) version.fs mach32b.fs $(FORTH_GEN0)
317 : pazsan 1.63 $(FORTHK) -p . -e 's" mach32b.fs"' main.fs -e "save-cross kernl32b.fi- $(bindir)/gforth-$(VERSION) bye"
318 : pazsan 1.13
319 : pazsan 1.65 kernl64l.fi-: $(KERN_SRC) version.fs mach64l.fs $(FORTH_GEN0)
320 : pazsan 1.63 $(FORTHK) -p . -e 's" mach64l.fs"' main.fs -e "save-cross kernl64l.fi- $(bindir)/gforth-$(VERSION) bye"
321 : pazsan 1.13
322 : pazsan 1.65 kernl64b.fi-: $(KERN_SRC) version.fs mach64b.fs $(FORTH_GEN0)
323 : pazsan 1.63 $(FORTHK) -p . -e 's" mach64b.fs"' main.fs -e "save-cross kernl64b.fi- $(bindir)/gforth-$(VERSION) bye"
324 : pazsan 1.30
325 :     kernl16b.fi: $(KERNLS)
326 : pazsan 1.31 -$(CP) kernl16b.fi kernl16b.fi~
327 : pazsan 1.48 -$(CP) kernl16b.fi- kernl16b.fi
328 : pazsan 1.30 @LINK_KERNL16B@
329 :    
330 :     kernl16l.fi: $(KERNLS)
331 : pazsan 1.31 -$(CP) kernl16l.fi kernl16l.fi~
332 : pazsan 1.48 -$(CP) kernl16l.fi- kernl16l.fi
333 : pazsan 1.30 @LINK_KERNL16L@
334 :    
335 :     kernl32b.fi: $(KERNLS)
336 : pazsan 1.31 -$(CP) kernl32b.fi kernl32b.fi~
337 : pazsan 1.48 -$(CP) kernl32b.fi- kernl32b.fi
338 : pazsan 1.30 @LINK_KERNL32B@
339 :    
340 :     kernl32l.fi: $(KERNLS)
341 : pazsan 1.31 -$(CP) kernl32l.fi kernl32l.fi~
342 : pazsan 1.48 -$(CP) kernl32l.fi- kernl32l.fi
343 : pazsan 1.30 @LINK_KERNL32L@
344 :    
345 :     kernl64b.fi: $(KERNLS)
346 : pazsan 1.31 -$(CP) kernl64b.fi kernl64b.fi~
347 : pazsan 1.48 -$(CP) kernl64b.fi- kernl64b.fi
348 : pazsan 1.13 @LINK_KERNL64B@
349 : pazsan 1.1
350 : pazsan 1.30 kernl64l.fi: $(KERNLS)
351 : pazsan 1.31 -$(CP) kernl64l.fi kernl64l.fi~
352 : pazsan 1.48 -$(CP) kernl64l.fi- kernl64l.fi
353 : pazsan 1.30 @LINK_KERNL64L@
354 :    
355 : pazsan 1.65 gforth.fi: @kernel_fi@ gforth $(GFORTH_FI_SRC)
356 : pazsan 1.56 $(FORTHK) -p . startup.fs -e "savesystem gforth.fi bye"
357 : anton 1.50
358 : pazsan 1.65 gforth.TAGS: @kernel_fi@ gforth $(GFORTH_FI_SRC) primitives.TAGS
359 : pazsan 1.56 $(FORTHK) -p . etags.fs startup.fs -e bye
360 : pazsan 1.65 cat TAGS primitives.TAGS kernel.TAGS >gforth.TAGS
361 : anton 1.34
362 : pazsan 1.65 engine.s: engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES) config.h
363 : anton 1.9 $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -S engine.c
364 : pazsan 1.1
365 : pazsan 1.65 engine.o: engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES) config.h
366 : anton 1.9 $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c engine.c
367 : pazsan 1.36
368 : pazsan 1.65 main.o: main.c machine.h threading.h $(INCLUDES) config.h
369 : pazsan 1.36 $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c main.c
370 : anton 1.9
371 :     strtoul.o: strtoul.c strtol.c
372 : pazsan 1.1
373 :     primitives.b: primitives
374 : anton 1.50 m4 -s $(srcdir)/primitives >$@
375 : pazsan 1.1
376 :     primitives.i : primitives.b prims2x.fs
377 : pazsan 1.43 $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-c process-file bye" >$@
378 : pazsan 1.1
379 :     prim_labels.i : primitives.b prims2x.fs
380 : pazsan 1.43 $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-label process-file bye" >$@
381 : pazsan 1.1
382 :     aliases.fs: primitives.b prims2x.fs
383 : pazsan 1.43 $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-alias process-file bye" >$@
384 : pazsan 1.1
385 :     primitives.fs: primitives.b prims2x.fs
386 : pazsan 1.43 $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-forth process-file bye" >$@
387 : anton 1.27
388 : anton 1.50 primitives.TAGS: primitives.b prims2x.fs
389 :     $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-tag process-file bye" >$@
390 : pazsan 1.1
391 : pazsan 1.28 doc.fd: makedoc.fs float.fs search-order.fs glocals.fs environ.fs \
392 : anton 1.20 toolsext.fs wordinfo.fs \
393 :     vt100.fs colorize.fs see.fs bufio.fs debug.fs history.fs \
394 : anton 1.33 doskey.fs vt100key.fs startup.fs assert.fs debugging.fs code.fs
395 : pazsan 1.43 $(FORTHK) -p . -e "s\" doc.fd\"" makedoc.fs startup.fs code.fs -e bye
396 : anton 1.20
397 : pazsan 1.65 crossdoc.fd: $(KERN_SRC) version.fs $(FORTH_GEN0)
398 : pazsan 1.63 $(FORTHK) -p . -e 's" mach32l.fs"' main.fs -e bye
399 : anton 1.35
400 : pazsan 1.28 gforth.texi: gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd
401 : pazsan 1.43 $(FORTHK) -p . ds2texi.fs -e "s\" gforth.ds\" r/o open-file throw ds2texi bye" >$@
402 : anton 1.35
403 :     checkdoc: gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd answords.fs
404 : pazsan 1.43 $(FORTHK) -p . ds2texi.fs answords.fs -e bye
405 : pazsan 1.1
406 : anton 1.45 gforth.dvi gforth.fns: gforth.texi
407 : anton 1.9 $(TEXI2DVI) gforth.texi
408 : anton 1.5
409 :     gforth.ps: gforth.dvi
410 : anton 1.9 $(DVI2PS) gforth.dvi -o $@
411 : anton 1.40
412 : anton 1.49 gforth.info*: gforth.texi
413 : anton 1.11 -$(MAKEINFO) gforth.texi
414 : anton 1.15
415 :     html: gforth.texi
416 :     -$(RM) html/*
417 :     -mkdir html
418 :     cd html; $(TEXI2HTML) -menu -split_node ../gforth.texi
419 : pazsan 1.63
420 :     doc: gforth.ps html
421 : pazsan 1.1
422 : anton 1.9 # For an explanation of the following Makefile rules, see node
423 :     # `Automatic Remaking' in GNU Autoconf documentation.
424 : anton 1.51 ${srcdir}/configure: configure.in
425 :     cd ${srcdir} && autoconf
426 :    
427 :     # autoheader might not change config.h.in, so touch a stamp file.
428 :     ${srcdir}/config.h.in: stamp-h.in
429 :     ${srcdir}/stamp-h.in: configure.in acconfig.h
430 :     cd ${srcdir} && autoheader
431 :     echo timestamp > ${srcdir}/stamp-h.in
432 :    
433 :     config.h: stamp-h
434 :     stamp-h: config.h.in config.status
435 :     CONFIG_FILES=$@ CONFIG_HEADERS=config.h ./config.status
436 :     echo > stamp-h
437 : anton 1.9 Makefile: Makefile.in config.status
438 : anton 1.51 CONFIG_FILES=$@ CONFIG_HEADERS=config.h ./config.status
439 :    
440 : anton 1.9 config.status: configure
441 : anton 1.51 ./config.status --recheck
442 : pazsan 1.30
443 : anton 1.51
444 :     #create files for DOS, because DOS cannot do it itself
445 : pazsan 1.30 makefile.dos: mkdosmf.sed Makefile.in
446 :     sed -f mkdosmf.sed <Makefile.in >makefile.dos
447 : pazsan 1.48
448 :     history.dos: history.fs Makefile.in
449 :     sed -e "s,~/\.gforth-history,/gforth.his,g" <history.fs >history.dos
450 : pazsan 1.31
451 :     startup.dos: startup.fs Makefile.in
452 :     sed -e "s/\\\\ include doskey/include doskey/g" \
453 : pazsan 1.43 -e "s/include vt100key/\\\\ include vt100key/g" <startup.fs >startup.dos
454 : anton 1.51

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help