File:  [gforth] / gforth / Makefile.in
Revision 1.141: download - view: text, annotated - select for diffs
Sat Dec 26 15:41:25 1998 UTC (25 years, 2 months ago) by anton
Branches: MAIN
CVS tags: v0-4-0, HEAD
fixed siteinit.fs-related problems

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

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