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

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