File:  [gforth] / gforth / Makefile.in
Revision 1.108: download - view: text, annotated - select for diffs
Thu May 7 22:44:39 1998 UTC (25 years, 10 months ago) by pazsan
Branches: MAIN
CVS tags: HEAD
Added missing doers.fs and getdoers.fs

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

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