File:  [gforth] / gforth / Makefile.in
Revision 1.127: download - view: text, annotated - select for diffs
Tue Dec 8 22:02:33 1998 UTC (25 years, 3 months ago) by anton
Branches: MAIN
CVS tags: HEAD
updated dates in copyright messages
inserted copyright messages in most files that did not have them
removed outdated files engine/32bit.h engine/strsig.c

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

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