File:  [gforth] / gforth / Makefile.in
Revision 1.171: download - view: text, annotated - select for diffs
Fri May 19 09:24:37 2000 UTC (23 years, 10 months ago) by anton
Branches: MAIN
CVS tags: HEAD
When building gforth.fi, there is now an exception frame after including
   exceptions.fs (through exboot.fs), providing decent error messages.

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>