File:  [gforth] / gforth / Makefile.in
Revision 1.110: download - view: text, annotated - select for diffs
Thu Jun 4 16:17:36 1998 UTC (25 years, 10 months ago) by anton
Branches: MAIN
CVS tags: HEAD
various changes in configure.in and the Makefile.in's:
   symlinks kernel.fi and arch/machine eliminated
   utilize some automake stuff (e.g., @VERSION@ and @lispdir@)
   eliminated engine/version.h
   eliminated replace.a; gforth[-ditc] is now built by engine/Makefile
   getopt_long replacement is now donw through LIBOBJS, like everything else
automake-induced changes in acconfig.h; added acinclude.m4 and AUTHORS.
aclocal.m4 is now generated (it's still in CVS because there's not yet a
	make rule for it).
made gforthmi more conformant with GNU standards (--version etc.).
prim: fixed portability bug (RTLD_GLOBAL does not exist everywhere)
arch/power/machine.h: refined cache flush code
doc/gforth.ds now uses @VERSION{} (but we need to generate version.texi)
	documented new buffering behaviour

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

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