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