1: #Makefile for Gforth
2:
3: #Copyright (C) 1995,1996,1997,1998 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: # 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: # Warning:
27: # For some stupid reason setting SHELL to bash does not work properly with
28: # DOS. If you want to use shell-specific things that must run with DOS make
29: # an external batch file and call it with bash (see versions.bsh).
30:
31: # ------------- gforth version
32:
33: VERSION = @VERSION@
34: DOSVERSION=`echo $(VERSION)|sed 's/\.//g'`
35:
36: # ------------- System specific variables
37:
38: machine=@machine@
39: kernel_fi=@kernel_fi@
40: EXE=@EXE@
41:
42: # this is the type of machine
43: # used to extend the include path with ./arch/$machine
44: # so we can include a machine specific
45: # machine.h file
46:
47: PATHSEP = @PATHSEP@
48:
49: osclass = @OSCLASS@
50:
51: # ------------- Utility programs
52:
53: SHELL = /bin/sh
54: RM = rm
55: RMTREE = rm -rf
56: CP = cp -p
57: MV = mv
58: TAR = tar cf -
59: INSTALL = @INSTALL@
60: INSTALL_PROGRAM = @INSTALL_PROGRAM@
61: INSTALL_DATA = @INSTALL_DATA@
62: LN_S = @LN_S@
63: GCC = @CC@
64: CC = $(GCC)
65: FORTHPATH = ~+$(PATHSEP)$(libdir)/gforth/site-forth$(PATHSEP)$(siteforthdir)$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)
66: FORTHSIZES = @FORTHSIZES@
67: FORTH_ARGS = --die-on-signal -p $(FORTHPATH)$(PATHSEP)$(srcdir)
68: ENGINE = ./gforth
69: FORTH = $(ENGINE) $(FORTH_ARGS)
70: ENGINE_FAST = $(ENGINE)-fast
71: FORTH_FAST = $(ENGINE_FAST) $(FORTH_ARGS)
72: FORTHKFLAGS= --die-on-signal -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)" -i $(kernel_fi)
73: FORTHK = $(ENGINE) $(FORTHKFLAGS)
74: FORTHP = $(ENGINE) --die-on-signal -i ./$(kernel_fi)
75: STARTUP = -e 3 exboot.fs startup.fs @asm_fs@ @disasm_fs@
76: STRIP = strip
77: TEXI2DVI = texi2dvi -e
78: DVI2PS = dvips -Z
79: #you can get texi2html from http://wwwcn.cern.ch/dci/texi2html/
80: MAKEINFO = makeinfo
81: TEXI2HTML = texi2html
82:
83: # ------------- Compiler Flags
84:
85: XCFLAGS = @CFLAGS@
86: XDEFINES = @DEFS@
87: SWITCHES = $(XCFLAGS) $(XDEFINES) #-DNDEBUG #turn off assertions
88: ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves
89: DEBUGFLAG = @DEBUGFLAG@
90: CFLAGS = $(DEBUGFLAG) -I$(srcdir)/engine -I$(srcdir)/arch/$(machine) -O3 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(FORTHPATH)\"
91:
92: #John Wavrik should use -Xlinker -N to get a writable text (executable)
93: XLDFLAGS = @LDFLAGS@
94: LDFLAGS = $(DEBUGFLAG) $(XLDFLAGS)
95: LDLIBS = @LIBS@
96:
97: # ------------ Install Directorys
98:
99: VPATH = @srcdir@
100: prefix = @prefix@
101: exec_prefix = @exec_prefix@
102: srcdir = @srcdir@
103: bindir = $(exec_prefix)/bin
104: #read-only architecture-independent files
105: datadir = $(prefix)/share
106: #read-only architecture-dependent non-ascii files
107: libdir = $(prefix)/lib
108: infodir = $(prefix)/info
109: mandir = $(prefix)/man
110: man1dir= $(mandir)/man1
111: man1ext= .1
112: #older emacses have their site-lisp in $(libdir)/emacs/
113: emacssitelispdir=@lispdir@
114: siteforthdir=$(datadir)/gforth/site-forth
115:
116: CVSDIRS = CVS engine/CVS kernel/CVS doc/CVS asm/CVS ec/CVS test/CVS \
117: compat/CVS \
118: arch/CVS arch/generic/CVS arch/m68k/CVS arch/mips/CVS \
119: arch/386/CVS arch/hppa/CVS arch/sparc/CVS arch/power/CVS \
120: arch/alpha/CVS arch/4stack/CVS arch/misc/CVS arch/6502/CVS \
121: arch/8086/CVS arch/avr/CVS arch/c165/CVS arch/h8/CVS \
122: arch/shboom/CVS
123:
124: INCLUDES = engine/forth.h engine/threaded.h engine/io.h
125:
126: KERN_SRC = \
127: mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
128: machpc.fs \
129: kernel/aliases0.fs \
130: kernel/aliases.fs \
131: kernel/args.fs \
132: chains.fs \
133: kernel/cbr.fs \
134: kernel/cloop.fs \
135: kernel/cond.fs \
136: kernel/cond-old.fs \
137: cross.fs \
138: kernel/errore.fs \
139: kernel/files.fs \
140: kernel/require.fs \
141: kernel/paths.fs \
142: kernel/kernel.fs \
143: kernel/main.fs \
144: kernel/prim0.fs \
145: search.fs \
146: kernel/quotes.fs \
147: kernel/tools.fs \
148: kernel/toolsext.fs \
149: kernel/vars.fs \
150: kernel/accept.fs \
151: kernel/basics.fs \
152: kernel/int.fs \
153: kernel/comp.fs \
154: kernel/io.fs \
155: kernel/license.fs \
156: kernel/nio.fs \
157: kernel/saccept.fs \
158: kernel/doers.fs \
159: kernel/getdoers.fs \
160: kernel/pass.fs
161:
162: EC_SRC = \
163: asm/README \
164: asm/bitmask.fs \
165: asm/numref.fs \
166: asm/basic.fs \
167: asm/generic.fs \
168: asm/target.fs \
169: ec/README \
170: ec/mirror.fs \
171: ec/shex.fs \
172: ec/builttag.fs \
173: ec/dotx.fs \
174: ec/nesting.fs
175:
176: GFORTH_FI_SRC = \
177: assert.fs \
178: backtrace.fs \
179: blocked.fb \
180: blocks.fs \
181: bufio.fs \
182: debug.fs \
183: debugs.fs \
184: ekey.fs \
185: savesys.fs \
186: environ.fs \
187: errors.fs \
188: exboot.fs \
189: exceptions.fs \
190: extend.fs \
191: float.fs \
192: glocals.fs \
193: hash.fs \
194: history.fs \
195: intcomp.fs \
196: locals.fs \
197: look.fs \
198: search.fs \
199: see.fs \
200: see-ext.fs \
201: source.fs \
202: startup.fs \
203: struct.fs \
204: stuff.fs \
205: tasker.fs \
206: termsize.fs \
207: vt100.fs \
208: vt100key.fs \
209: wordinfo.fs \
210: arch/386/asm.fs arch/386/disasm.fs \
211: arch/alpha/asm.fs arch/alpha/disasm.fs \
212: arch/mips/asm.fs arch/mips/disasm.fs arch/mips/insts.fs
213:
214: FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_SRC) $(EC_SRC) \
215: ans-report.fs ansi.fs answords.fs \
216: code.fs colorize.fs comp-i.fs \
217: doskey.fs ds2texi.fs \
218: envos.fs envos.dos envos.os2 etags.fs filedump.fs fi2c.fs \
219: glosgen.fs gray.fs httpd.fs \
220: make-app.fs doc/makedoc.fs \
221: more.fs other.fs prims2x.fs random.fs \
222: table.fs string.fs \
223: tt.fs sokoban.fs \
224: unbuffered.fs wordsets.fs \
225: test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs \
226: test/other.fs test/checkans.fs \
227: bubble.fs siev.fs matrix.fs fib.fs \
228: oof.fs oofsampl.fs objects.fs objexamp.fs mini-oof.fs moof-exm.fs \
229: moofglos.fs \
230: add.fs lib.fs sieve.fs
231:
232: COMPAT = compat/README \
233: compat/anslocal.fs \
234: compat/assert.fs \
235: compat/control.fs \
236: compat/defer.fs \
237: compat/exception.fs \
238: compat/loops.fs \
239: compat/required.fs \
240: compat/struct.fs \
241: compat/vocabulary.fs
242:
243: GFORTH_TEXI = doc/gforth.texi doc/version.texi
244:
245: ALLSUBDIRS = engine
246:
247: ARCHS = \
248: arch/generic/machine.h \
249: arch/m68k/machine.h \
250: arch/mips/machine.h \
251: arch/386/machine.h \
252: arch/hppa/machine.h \
253: arch/hppa/cache.c \
254: arch/sparc/machine.h \
255: arch/power/machine.h \
256: arch/power/_sync_cache_range.c \
257: arch/power/elf32ppc.x \
258: arch/alpha/machine.h \
259: arch/4stack/README \
260: arch/4stack/asm.fs \
261: arch/4stack/mach.fs \
262: arch/4stack/prim.fs \
263: arch/4stack/mach.sh \
264: arch/4stack/relocate.fs \
265: arch/misc/README \
266: arch/misc/asm.fs \
267: arch/misc/mach.fs \
268: arch/misc/prim.fs \
269: arch/misc/sim.fs \
270: arch/misc/sokoban.fs \
271: arch/misc/tt.fs \
272: arch/6502/asm.fs \
273: arch/6502/prim.fs \
274: arch/6502/mach.fs \
275: arch/6502/zero.fs \
276: arch/6502/softuart.fs \
277: arch/6502/cold.fs \
278: arch/8086/asm.fs \
279: arch/8086/mach.fs \
280: arch/8086/mach.sh \
281: arch/8086/prim.fs \
282: arch/avr/asm.fs \
283: arch/c165/asm.fs \
284: arch/c165/mach.fs \
285: arch/c165/prim.fs \
286: arch/h8/asm.fs \
287: arch/shboom/asm.fs \
288: arch/shboom/compiler.fs \
289: arch/shboom/dis.fs \
290: arch/shboom/mach.fs \
291: arch/shboom/prim.fs \
292: arch/shboom/dis2.fs \
293: arch/shboom/sh.p \
294: arch/shboom/doers.fs
295:
296: # arch/sharc/mach.fs \
297: # arch/sharc/machine.h \
298: # arch/sharc/compile.sharc \
299: # arch/sharc/unistd.h \
300: # arch/sharc/systypes.h \
301: # arch/sharc/types.h \
302: # arch/sharc/g21k-3.3.4-bp1.diff
303:
304: SOURCES = $(CVSDIRS) compat Makefile.in Makedist.in engine/Makefile.in gforthmi.in \
305: configure.in configure config.sub config.guess elisp-comp missing \
306: acconfig.h acinclude.m4 engine/config.h.in stamp-h.in \
307: install-sh INSTALL INSTALL.BINDIST NEWS README ToDo BUGS model \
308: COPYING AUTHORS ChangeLog Benchres aclocal.m4 \
309: doc/gforth.ds doc/texinfo.tex doc/gforth.1 doc/version.texi.in \
310: gforth.el \
311: prim engine/engine.c engine/main.c engine/io.c engine/memcmpc.c \
312: engine/signals.c $(ARCHS) \
313: engine/getopt.c engine/getopt1.c engine/getopt.h engine/select.c \
314: engine/ecvt.c engine/memcmp.c engine/strtol.c engine/strtoul.c \
315: engine/ansidecl.h engine/memmove.c \
316: engine/pow10.c engine/atanh.c engine/cleanalign.c \
317: engine/strerror.c engine/strsignal.c engine/dblsub.c \
318: engine/fnmatch.h engine/fnmatch.c \
319: INSTALL.DOS makefile.dos engine/makefile.dos mkdosmf.sed config.bat \
320: dosconf.h gforthmi.bat mkinstalldirs siteinit.fs \
321: versions.bsh \
322: configure.cmd mkos2mf.sed os2conf.h makefile.os2 engine/makefile.os2 \
323: gforthmi.cmd glosgen.glo doc/glossaries.doc \
324: $(INCLUDES) $(FORTH_SRC) $(COMPAT) \
325: timings.sc \
326: test/coretest.out test/checkans.out
327:
328: RCS_FILES = ToDo model high-level
329:
330: GEN = gforth$(EXE) gforth-ditc$(EXE) gforth-fast$(EXE) kernel/version.fs
331:
332: # things that need a working forth system to be generated
333: FORTH_GEN0 = prim.b engine/prim.i engine/prim_lab.i kernel/aliases.fs kernel/prim.fs
334: FORTH_GEN = $(FORTH_GEN0) @KERNEL@ gforth.fi
335: # this is used for antidependences,
336: FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@
337:
338: #distributed documentation
339: DOCDIST = doc/gforth.info doc/gforth.info-* doc/gforth.ps
340:
341: KERNLS = kernl16b.fi- kernl16l.fi- \
342: kernl32b.fi- kernl32l.fi- \
343: kernl64b.fi- kernl64l.fi-
344:
345: GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) doc/gforth.texi doc/gforth.dvi doc/gforth.ps Makefile Makedist engine/Makefile configure
346:
347: #standards.info recommends this:
348: .SUFFIXES:
349: .SUFFIXES: .c .o
350:
351:
352: all: kernel/version.fs more
353:
354: # use this dependency for phony targets just as mostlyclean,...
355: FORCE: ;
356:
357: #this rule avoids remaking everything after minor changes in Makefile.in
358: version: Makefile.in
359: if test -r $@ && test x'$(VERSION)' = x`cat $@` ; then true ; else echo $(VERSION) > $@ ; fi
360:
361: # With dos we use normal dos echo
362: # we cannot pipe the output to engine/version.h directly because
363: # of the "/ and \" problem. Copying works because we use the
364: # shell und file utilities.
365:
366: kernel/version.fs: version
367: $(MAKE) gforth$(EXE)
368: echo ": version-string s\" $(VERSION)\" ;" > kernel/version.fs
369:
370: more: engine $(FORTH_GEN) $(GEN)
371:
372: #from the gcc Makefile:
373: #"Deletion of files made during compilation.
374: # There are four levels of this:
375: # `mostlyclean', `clean', `distclean' and `realclean'.
376: # `mostlyclean' is useful while working on a particular type of machine.
377: # It deletes most, but not all, of the files made by compilation.
378: # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
379: # `clean' deletes everything made by running `make all'.
380: # `distclean' also deletes the files made by config.
381: # `realclean' also deletes everything that could be regenerated automatically."
382:
383: mostlyclean: FORCE
384: -$(RM) -rf engine/*.s gforth.fi *.fi~ *.fi- kernel/version.fs \
385: *TAGS gforth~ \
386: doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
387: doc/gforth.aux doc/gforth.cp doc/gforth.cps \
388: doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
389: doc/gforth.pg \
390: doc/gforth.toc doc/gforth.tp doc/gforth.vr html \
391: gforth-$(VERSION).tar.gz
392:
393: # Just the stuff needed to rebuild the documentation nac03feb1999
394: docclean: FORCE
395: -$(RM) -rf doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
396: doc/gforth.aux doc/gforth.cp doc/gforth.cps \
397: doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
398: doc/gforth.pg \
399: doc/gforth.toc doc/gforth.tp doc/gforth.vr html
400:
401: clean: mostlyclean
402: -$(RM) -rf $(GEN) engine/gforth$(EXE) \
403: engine/gforth-fast$(EXE) engine/gforth-ditc$(EXE) \
404: *.o engine/*.o arch/*/*.o version
405:
406: distclean: clean
407: -$(RM) config.cache config.log config.status \
408: engine/config.h Makefile Makedist engine/Makefile \
409: stamp-h engine/stamp-h \
410: doc/version.texi gforthmi
411:
412: #realclean is useless, but dangerous, so it's commented out
413: realclean: distclean
414: -$(RM) $(GEN_PRECIOUS)
415:
416: #mostlyclean, but also remove some of the stuff that is distributed
417: virtualclean: mostlyclean
418: -$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \
419: gforth-$(VERSION).tar.gz config.cache *~ */*~
420:
421: #Some makes (Ultrix, SunOS, IRIX) are so broken, they cannot read the
422: #Makefile if it contains our dist rules. Therefore we have put these
423: #rules in Makedist (you can use them with GNU make on these systems).
424: dist: Makedist FORCE
425: $(MAKE) -f Makedist d$@
426:
427: dosdist: Makedist FORCE
428: $(MAKE) -f Makedist d$@
429:
430: srcdist: Makedist FORCE
431: $(MAKE) -f Makedist d$@
432:
433: srconlydist: Makedist FORCE
434: $(MAKE) -f Makedist d$@
435:
436: docdist: Makedist FORCE
437: $(MAKE) -f Makedist d$@
438:
439: htmldist: Makedist FORCE
440: $(MAKE) -f Makedist d$@
441:
442: bindist: Makedist FORCE
443: $(MAKE) -f Makedist d$@
444:
445: binonlydist: Makedist FORCE
446: $(MAKE) -f Makedist d$@
447:
448:
449: #strip gforth, because the debugging stuff is hardly useful once
450: # gforth manages to execute more than a few primitives
451:
452: #install does not depend on gforth.info, because that would require
453: #supplying a lot of files that can be easily generated (only info is
454: #hard to generate)
455: #gforth.fi and install.TAGS is rm'ed after installing because of ownership
456: install: gforth$(EXE) $(FORTH_SRC) $(kernel_fi) gforth.fi gforthmi doc/gforth.1 prim install.TAGS installdirs
457: touch $(siteforthdir)/siteinit.fs
458: -$(RM) $(bindir)/gforth$(EXE) $(bindir)/gforth-$(VERSION)$(EXE) $(bindir)/gforthmi
459: -$(RM) $(bindir)/gforth-fast$(EXE) $(bindir)/gforth-fast-$(VERSION)$(EXE)
460: $(INSTALL_PROGRAM) -s gforth$(EXE) $(bindir)/gforth-$(VERSION)$(EXE)
461: (cd $(bindir) && $(LN_S) gforth-$(VERSION)$(EXE) gforth$(EXE))
462: $(INSTALL_PROGRAM) -s gforth-fast$(EXE) $(bindir)/gforth-fast-$(VERSION)$(EXE)
463: (cd $(bindir) && $(LN_S) gforth-fast-$(VERSION)$(EXE) gforth-fast$(EXE))
464: $(INSTALL_PROGRAM) gforthmi $(bindir)/gforthmi-$(VERSION)
465: $(INSTALL_PROGRAM) gforth-ditc $(libdir)/gforth/$(VERSION)
466: (cd $(bindir) && $(LN_S) gforthmi-$(VERSION) gforthmi)
467: -$(INSTALL_DATA) $(srcdir)/doc/gforth.1 $(man1dir)
468: -for i in $(srcdir)/doc/gforth.info*; do $(INSTALL_DATA) $$i $(infodir); done
469: for i in $(FORTH_SRC) $(COMPAT) prim; do \
470: $(INSTALL_DATA) $(srcdir)/$$i $(datadir)/gforth/$(VERSION)/$$i; \
471: done
472: $(INSTALL_DATA) $(kernel_fi) $(datadir)/gforth/$(VERSION)
473: $(RM) gforth.fi
474: GFORTHD="./gforth-ditc -p$(libdir)/gforth/site-forth$(PATHSEP)$(siteforthdir)$(PATHSEP)$(datadir)/gforth/$(VERSION) -i $(kernel_fi)" GFORTH="./gforth-ditc --die-on-signal -i $(kernel_fi) $(STARTUP)" ./gforthmi gforth.fi $(FORTHSIZES) $(STARTUP) #gforth.fi contains some path names
475: $(INSTALL_DATA) gforth.fi $(libdir)/gforth/$(VERSION)
476: $(INSTALL_DATA) install.TAGS $(datadir)/gforth/$(VERSION)/TAGS
477: $(RM) gforth.fi install.TAGS
478: @if test -d "$(emacssitelispdir)"; then \
479: $(INSTALL_DATA) $(srcdir)/gforth.el $(emacssitelispdir); \
480: else \
481: echo ">>>>>Please install $(srcdir)/gforth.el in your .../emacs/site-lisp directory"; \
482: fi
483: @echo ">>>>> Please make an entry for Gforth in your info dir file; e.g.:"; \
484: echo "* Gforth: (gforth). A fast interpreter for the Forth language."
485:
486: install-strip: install
487:
488: installdirs: mkinstalldirs
489: for i in $(bindir) $(man1dir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(siteforthdir); do \
490: $(srcdir)/mkinstalldirs $$i; \
491: done
492: for i in $(CVSDIRS); do \
493: $(srcdir)/mkinstalldirs $(datadir)/gforth/$(VERSION)/`dirname $$i`; \
494: done
495: $(RM) -rf $(datadir)/gforth/$(VERSION)/engine
496:
497: #deinstall all files specific to this version of gforth
498: #to uninstall version foo, type `make uninstall VERSION=foo'
499: uninstall: FORCE
500: -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)$(EXE) $(bindir)/gforthmi-$(VERSION)
501: @echo -e "To remove Gforth completely, type\n$(RM) -rf $(bindir)/gforth$(EXE) $(bindir)/gforthmi $(man1dir)/gforth.1 $(infodir)/gforth.info* $(datadir)/gforth $(libdir)/gforth"
502:
503: check test: gforth$(EXE) gforth.fi
504: $(FORTH) test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs -e bye | diff -c - $(srcdir)/test/coretest.out
505: $(FORTH) test/other.fs -e bye
506: $(FORTH) code.fs test/checkans.fs -e bye | diff -c - $(srcdir)/test/checkans.out
507: $(FORTHK) -m 100000 prims2x.fs -e \
508: "c-flag on s\" $(srcdir)/prim.b\" ' output-c process-file bye"| \
509: diff -c - $(srcdir)/engine/prim.i
510:
511: bench: gforth-fast$(EXE) gforth.fi
512: @echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
513: time $(FORTH_FAST) siev.fs -e "main bye"
514: time $(FORTH_FAST) bubble.fs -e "main bye"
515: time $(FORTH_FAST) -m 160000 matrix.fs -e "main bye"
516: time $(FORTH_FAST) fib.fs -e "main bye"
517:
518: # ------------- Make forth images
519:
520: # How to make new images:
521: # 1. Produce an image called kernlXYZ.fi-
522: # the original kernel.fi is not touched because it's needed for creation
523: # 2. copy old kernlXYZ.fi to kernlXYZ.fi~
524: # that's a backup copy in case the new kernels don't work
525: # 3. copy new kernels to kernlXYZ.fi
526: # these are the ones we want to use now
527:
528: kernl16l.fi-: $(KERN_SRC) kernel/version.fs mach16l.fs $(FORTH_GEN0)
529: $(FORTHK) -e 's" mach16l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16l.fi- $(bindir)/gforth-$(VERSION) bye"
530:
531: kernl16b.fi-: $(KERN_SRC) kernel/version.fs mach16b.fs $(FORTH_GEN0)
532: $(FORTHK) -e 's" mach16b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16b.fi- $(bindir)/gforth-$(VERSION) bye"
533:
534: kernl32l.fi-: $(KERN_SRC) kernel/version.fs mach32l.fs $(FORTH_GEN0)
535: $(FORTHK) -e 's" mach32l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32l.fi- $(bindir)/gforth-$(VERSION) bye"
536:
537: kernl32b.fi-: $(KERN_SRC) kernel/version.fs mach32b.fs $(FORTH_GEN0)
538: $(FORTHK) -e 's" mach32b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32b.fi- $(bindir)/gforth-$(VERSION) bye"
539:
540: kernl64l.fi-: $(KERN_SRC) kernel/version.fs mach64l.fs $(FORTH_GEN0)
541: $(FORTHK) -e 's" mach64l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64l.fi- $(bindir)/gforth-$(VERSION) bye"
542:
543: kernl64b.fi-: $(KERN_SRC) kernel/version.fs mach64b.fs $(FORTH_GEN0)
544: $(FORTHK) -e 's" mach64b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64b.fi- $(bindir)/gforth-$(VERSION) bye"
545:
546: kernl-%.fi: arch/%/mach.fs $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
547: $(FORTHK) -e 's" $<"' $(srcdir)/kernel/main.fs -e "save-cross $@- $(bindir)/gforth-$(VERSION) bye"
548: if [ -f `echo $< | sed s/fs/sh/` ]; \
549: then sh `echo $< | sed s/fs/sh/` $@; \
550: else $(CP) $@- $@; \
551: fi
552:
553: #SunOS make does not like that
554: #arch/%/mach.fs: arch/%/prim.fs arch/%/asm.fs
555:
556: kernl16b.fi: $(KERNLS)
557: -$(CP) kernl16b.fi kernl16b.fi~
558: -$(CP) kernl16b.fi- kernl16b.fi
559:
560: kernl16l.fi: $(KERNLS)
561: -$(CP) kernl16l.fi kernl16l.fi~
562: -$(CP) kernl16l.fi- kernl16l.fi
563:
564: kernl32b.fi: $(KERNLS)
565: -$(CP) kernl32b.fi kernl32b.fi~
566: -$(CP) kernl32b.fi- kernl32b.fi
567:
568: kernl32l.fi: $(KERNLS)
569: -$(CP) kernl32l.fi kernl32l.fi~
570: -$(CP) kernl32l.fi- kernl32l.fi
571:
572: kernl64b.fi: $(KERNLS)
573: -$(CP) kernl64b.fi kernl64b.fi~
574: -$(CP) kernl64b.fi- kernl64b.fi
575:
576: kernl64l.fi: $(KERNLS)
577: -$(CP) kernl64l.fi kernl64l.fi~
578: -$(CP) kernl64l.fi- kernl64l.fi
579:
580: #kernl%.fi: kernl%.fi- $(KERNLS)
581: # -$(CP) $@ $@~
582: # -$(CP) $< $@
583:
584: gforth.fi: $(kernel_fi) gforthmi gforth$(EXE) gforth-ditc$(EXE) $(GFORTH_FI_SRC)
585: GFORTHD="./gforth-ditc -p .$(PATHSEP)$(srcdir)" GFORTH="./gforth-ditc --die-on-signal -p .$(PATHSEP)$(srcdir) -i $(kernel_fi) $(STARTUP)" ./gforthmi gforth.fi $(FORTHSIZES) $(FORTHKFLAGS) $(STARTUP)
586:
587: # ------------- Make c-engine
588:
589: prim.b: prim
590: m4 -s $(srcdir)/prim >$@
591:
592: engine/prim.i: prim.b prims2x.fs
593: $(FORTHK) prims2x.fs -e "c-flag on s\" prim.b\" ' output-c process-file bye" >$@-
594: $(CP) $@- $@
595: $(RM) $@-
596:
597: engine/prim_lab.i: prim.b prims2x.fs
598: $(FORTHK) prims2x.fs -e "c-flag on s\" prim.b\" ' output-label process-file bye" >$@-
599: $(CP) $@- $@
600: $(RM) $@-
601:
602: kernel/aliases.fs: prim.b prims2x.fs kernel/aliases0.fs
603: $(CP) kernel/aliases0.fs $@-
604: $(FORTHK) prims2x.fs -e "forth-flag on s\" prim.b\" ' output-alias process-file bye" >>$@-
605: $(CP) $@- $@
606: $(RM) $@-
607:
608: kernel/prim.fs: prim.b prims2x.fs kernel/prim0.fs
609: $(CP) kernel/prim0.fs kernel/prim.fs-
610: $(FORTHK) prims2x.fs -e "forth-flag on s\" prim.b\" ' output-forth process-file bye" >>$@-
611: $(CP) $@- $@
612: $(RM) $@-
613:
614: gforth$(EXE): engines
615: -$(CP) gforth$(EXE) gforth~
616: $(CP) engine/$@ $@
617: @GFORTH_EXE@
618:
619: gforth-fast$(EXE): engines
620: $(CP) engine/$@ $@
621: @GFORTHFAST_EXE@
622:
623: gforth-ditc$(EXE): engines
624: $(CP) engine/$@ $@
625: @GFORTHDITC_EXE@
626:
627: engines: FORCE engine/Makefile engine/prim.i engine/prim_lab.i
628: cd engine && $(MAKE) gforth$(EXE) gforth-fast$(EXE) gforth-ditc$(EXE)
629:
630: # ------------- additional C primitives
631:
632: %.c: %.pri prim2cl.fs
633: $(FORTHK) prim2cl.fs -e "file $< altogether bye" >$@
634:
635: %.so: %.c
636: $(GCC) -shared $(CFLAGS) $< -o $@
637:
638: # ------------- Make Documentation
639:
640: #TAGS is a GNU standard target
641: TAGS: gforth.TAGS
642: $(CP) gforth.TAGS $@
643:
644: install.TAGS: gforth.TAGS
645: sed 's:^\$(srcdir)/:$(datadir)/gforth/$(VERSION)/:' gforth.TAGS >install.TAGS
646:
647: gforth.TAGS: @kernel_fi@ gforth $(GFORTH_FI_SRC) prim.TAGS
648: $(FORTHK) etags.fs exceptions.fs startup.fs -e bye
649: cat TAGS prim.TAGS kernel.TAGS >gforth.TAGS
650: rm TAGS
651:
652: prim.TAGS: prim.b prims2x.fs
653: $(FORTHK) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-tag process-file bye" >$@-
654: $(CP) $@- $@
655: $(RM) $@-
656:
657: doc/doc.fd: doc/makedoc.fs $(GFORTH_FI_SRC) code.fs objects.fs oof.fs moofglos.fs
658: $(FORTHK) -e "s\" doc/doc.fd\"" doc/makedoc.fs exceptions.fs startup.fs code.fs objects.fs oof.fs moofglos.fs -e bye
659:
660: doc/crossdoc.fd: $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
661: $(FORTHK) -e 's" mach32l.fs"' kernel/main.fs -e bye
662:
663: doc/gforth.texi: doc/gforth.ds prim.b ds2texi.fs prims2x.fs \
664: doc/doc.fd doc/crossdoc.fd
665: $(FORTHK) -m 100000 ds2texi.fs prims2x.fs -e "s\" $(srcdir)/prim.b\" ' register-doc process-file" doc/crossdoc.fd doc/doc.fd -e "s\" $(srcdir)/doc/gforth.ds\" r/o open-file throw ds2texi bye" >$@-
666: $(CP) $@- $@
667: $(RM) $@-
668:
669: checkdoc: doc/gforth.ds prim.b ds2texi.fs prims2x.fs doc/doc.fd doc/crossdoc.fd answords.fs doc/gforth.texi
670: $(FORTHK) -m 1M ds2texi.fs prims2x.fs -e "s\" $(srcdir)/prim.b\" ' register-doc process-file" doc/crossdoc.fd doc/doc.fd answords.fs -e bye
671: -grep unknown doc/gforth.texi
672:
673: dvi: doc/gforth.dvi
674:
675: doc/gforth.dvi doc/gforth.fns: $(GFORTH_TEXI)
676: cd doc; $(TEXI2DVI) gforth.texi
677:
678: doc/gforth.ps: doc/gforth.dvi
679: $(DVI2PS) doc/gforth.dvi -o $@
680:
681: info: doc/gforth.info
682:
683: doc/gforth.info doc/gforth.info-*: $(GFORTH_TEXI)
684: -cd doc; $(MAKEINFO) gforth.texi
685:
686: html: $(GFORTH_TEXI)
687: -$(RMTREE) html
688: -mkdir html
689: ### need makeinfo 4.0 to generate html. Otherwise, use texi2html..
690: cd html; $(MAKEINFO) --html -I ../doc ../doc/gforth.texi
691: ### cd html; $(TEXI2HTML) -menu -split_node ../doc/gforth.texi
692:
693: doc/gforth.txt: $(GFORTH_TEXI)
694: -cd doc; $(MAKEINFO) --no-headers --no-split gforth.texi >gforth.txt
695:
696: doc: info doc/gforth.ps html doc/gforth.txt TAGS
697:
698: # For an explanation of the following Makefile rules, see node
699: # `Automatic Remaking' in GNU Autoconf documentation.
700:
701: #Note: no target "$(srcdir)/configure", because that does not trigger
702: #unless $(srcdir)!="."
703: configure: configure.in aclocal.m4
704: cd $(srcdir) && autoconf
705:
706: aclocal.m4: acinclude.m4 configure.in
707: aclocal
708:
709: # autoheader might not change config.h.in, so touch a stamp file.
710: engine/config.h.in: stamp-h.in
711: stamp-h.in: configure.in acconfig.h
712: cd $(srcdir) && autoheader
713: echo timestamp > $(srcdir)/stamp-h.in
714:
715: engine/config.h: stamp-h
716: stamp-h: engine/config.h.in config.status
717: CONFIG_FILES=$@ CONFIG_HEADERS=engine/config.h ./config.status
718: echo timestamp > stamp-h
719:
720: Makefile Makedist engine/Makefile gforthmi: Makefile.in Makedist.in engine/Makefile.in gforthmi.in config.status
721: CONFIG_FILES="$@" CONFIG_HEADERS=engine/config.h ./config.status
722:
723: config.status: configure
724: ./config.status --recheck
725:
726:
727: #create files for DOS, because DOS cannot do it itself
728: makefile.dos: mkdosmf.sed Makefile.in engine/Makefile.in
729: sed -f mkdosmf.sed <Makefile.in >makefile.dos
730: sed -f mkdosmf.sed <engine/Makefile.in >engine/makefile.dos
731:
732: makefile.os2: mkos2mf.sed Makefile.in engine/Makefile.in
733: sed -f mkos2mf.sed <Makefile.in >makefile.os2
734: sed -f mkos2mf.sed <engine/Makefile.in >engine/makefile.os2
735: echo '%.o: %.c' >>makefile.os2
736: echo ' $$(GCC) $$(CFLAGS) -c $$<' >>makefile.os2
737: echo '%.o: %.c' >>engine/makefile.os2
738: echo ' $$(GCC) $$(CFLAGS) -c $$<' >>engine/makefile.os2
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>