File:  [gforth] / gforth / Makefile.in
Revision 1.481: download - view: text, annotated - select for diffs
Sat Jul 14 13:16:02 2012 UTC (11 years, 9 months ago) by pazsan
Branches: MAIN
CVS tags: HEAD
Slightly improved $substitute to allow arguments on the stack

    1: #Makefile for Gforth
    2: 
    3: #Copyright (C) 1995,1996,1997,1998,2000,2003,2004,2005,2006,2007,2008,2009,2010,2011 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 3
   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, see http://www.gnu.org/licenses/.
   19: 
   20: # To change the values of `make' variables: instead of editing Makefiles,
   21: # (1) if the variable is set in `config.status', edit `config.status'
   22: #     (which will cause the Makefiles to be regenerated when you run `make');
   23: # (2) otherwise, pass the desired values on the `make' command line.
   24: 
   25: # Warning:
   26: # For some stupid reason setting SHELL to bash does not work properly with
   27: # DOS. If you want to use shell-specific things that must run with DOS make
   28: # an external batch file and call it with bash (see versions.bsh).
   29: 
   30: # ------------- gforth version
   31: 
   32: VERSION	= @PACKAGE_VERSION@
   33: DOSVERSION=`echo $(VERSION)|sed 's/\.//g'|sed 's/-.*//g'`
   34: 
   35: # -------------	System specific variables	
   36: 
   37: machine=@machine@
   38: kernel_fi=@kernel_fi@
   39: EXE=@EXEEXT@
   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: EC = @EC@
   49: ARCH= @ARCH@
   50: EXT = $(EC)$(ARCH)$(EXE)
   51: 
   52: # ------------	Install Directories
   53: 
   54: package =
   55: VPATH = @srcdir@
   56: prefix = @prefix@
   57: exec_prefix = @exec_prefix@
   58: srcdir = @srcdir@
   59: bindir = $(package)@bindir@
   60: #read-only architecture-independent files
   61: datarootdir = @datarootdir@
   62: datadir = $(package)@datadir@
   63: #read-only architecture-dependent non-ascii files
   64: libdir = $(package)@libdir@
   65: libexecdir = $(package)@libexecdir@
   66: libccdir = $(subst $(DESTDIR),,$(libexecdir)/gforth$(ARCH)/$(VERSION)/libcc-named/)
   67: includedir = $(package)@includedir@
   68: infodir = $(package)@infodir@
   69: htmldir = $(package)@htmldir@
   70: mandir = $(package)@mandir@
   71: man1dir= $(mandir)/man1
   72: man1ext= .1
   73: #older emacses have their site-lisp in $(libdir)/emacs/
   74: emacssitelispdir=$(package)@lispdir@
   75: siteforthdir=$(datadir)/gforth/site-forth
   76: 
   77: # -------------	Utility programs
   78: 
   79: SHELL	= /bin/sh
   80: RM	= rm
   81: RMTREE	= rm -rf
   82: CP	= cp -p
   83: MV	= mv
   84: TAR	= tar cf -
   85: INSTALL	= @INSTALL@
   86: INSTALL_PROGRAM = @INSTALL_PROGRAM@
   87: MASSAGE_EXE = @MASSAGE_EXE@
   88: INSTALL_SCRIPT = @INSTALL_SCRIPT@
   89: INSTALL_DATA = @INSTALL_DATA@
   90: INSTALL_INFO = @INSTALL_INFO@
   91: LN_S	= @LN_S@
   92: M4      = @M4@
   93: GCC	= @CC@
   94: EMACS   = @EMACS@
   95: LIBTOOL = @GNU_LIBTOOL@
   96: PREFORTH	= ./preforth -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)"
   97: CC	= $(GCC)
   98: FORTHPATH = .$(PATHSEP)$(libdir)/gforth/site-forth$(PATHSEP)$(siteforthdir)$(PATHSEP)$(libdir)/gforth$(ARCH)/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)
   99: FORTHSIZES = @FORTHSIZES@
  100: FORTHS_ARGS =  -p "$(FORTHPATH)$(PATHSEP)$(srcdir)"
  101: FORTH_ARGS = --die-on-signal $(FORTHS_ARGS)
  102: ENGINE = ./gforth
  103: FORTH	= $(ENGINE) $(FORTH_ARGS)
  104: FORTHS	= $(ENGINE) $(FORTHS_ARGS)
  105: # the (existing) forth system to use for cross compiling and primitives tables
  106: # per default we use the one in this directory for a rebuild. It is also
  107: # possible to override this variable at the command line for an initial build (jaw)
  108: BUILDFORTH = $(ENGINE) --die-on-signal -m 4M -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)" -i $(kernel_fi)
  109: # the forth system plus flags we use to build
  110: FORTHB = $(BUILDFORTH) exboot.fs -e 'fpath= .|~+|$(srcdir)'
  111: # the Forth system for running prims2x.fs
  112: #FORTHP = $(FORTH)
  113: ENGINE_FAST = ./gforth-fast$(EXT)
  114: FORTH_FAST	= $(ENGINE_FAST) $(FORTH_ARGS)
  115: FORTHKFLAGS= --die-on-signal -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)" -i $(kernel_fi)
  116: FORTHK	= ./gforthker -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)"
  117: #FORTHP	= $(ENGINE) --die-on-signal -i ./$(kernel_fi)
  118: #the "-2 image-included-files +!" undoes the change to image-included-files
  119: # in exboot.fs
  120: STARTUP	= exboot.fs startup.fs @asm_fs@ @disasm_fs@
  121: STRIP	= strip
  122: TEXI2DVI = @TEXI2DVI@
  123: TEXI2PDF = @TEXI2DVI@ --pdf
  124: DVI2PS	= dvips -t letterSize -Z
  125: #you can get texi2html from http://wwwcn.cern.ch/dci/texi2html/
  126: MAKEINFO = makeinfo
  127: TEXI2HTML = texi2html
  128: 
  129: # -------------	Compiler Flags
  130: 
  131: XCFLAGS	= @CFLAGS@
  132: XDEFINES = @DEFS@
  133: SWITCHES = $(XCFLAGS) $(XDEFINES) $(OPTDEFINES) #-DNDEBUG #turn off assertions
  134: ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves
  135: DEBUGFLAG = @DEBUGFLAG@
  136: CFLAGS	= $(DEBUGFLAG) -I$(srcdir)/engine -I$(srcdir)/arch/$(machine) -O3 -Wall $(SWITCHES) -DDEFAULTPATH='"$(FORTHPATH)"'
  137: CPPFLAGS = @CPPFLAGS@
  138: 
  139: #John Wavrik should use -Xlinker -N to get a writable text (executable)
  140: XLDFLAGS = @LDFLAGS@
  141: LDFLAGS	=  $(DEBUGFLAG) $(XLDFLAGS)
  142: LDLIBS	= @LIBS@
  143: 
  144: STACK_CACHE_REGS = @STACK_CACHE_REGS@
  145: STACK_CACHE_DEFAULT_FAST = @STACK_CACHE_DEFAULT_FAST@
  146: 
  147: PROFOBJS = @PROFOBJS@
  148: PROFEXES = @PROFEXES@
  149: 
  150: INSTALLDIRS = kernel doc asm ec test \
  151: 	compat unix \
  152: 	arch arch/generic arch/m68k arch/mips \
  153: 	arch/386 arch/hppa arch/sparc arch/power \
  154: 	arch/alpha arch/4stack arch/misc arch/6502 \
  155: 	arch/8086 arch/avr arch/c165 arch/h8 \
  156: 	arch/shboom arch/sharc arch/ia64 arch/amd64 \
  157: 	arch/arm arch/r8c
  158: 
  159: INCLUDES = engine/forth.h engine/threaded.h engine/io.h engine/longlong.h
  160: 
  161: KERN_SRC = \
  162: 	mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
  163: 	machpc.fs.in \
  164: 	kernel/aliases0.fs \
  165: 	kernel/aliases.fs \
  166: 	kernel/args.fs \
  167: 	kernel/cbr.fs \
  168: 	kernel/cloop.fs \
  169: 	kernel/cond.fs \
  170: 	kernel/cond-old.fs \
  171: 	cross.fs \
  172: 	kernel/errore.fs \
  173: 	kernel/files.fs \
  174: 	kernel/require.fs \
  175: 	kernel/paths.fs \
  176: 	kernel/kernel.fs \
  177: 	kernel/main.fs \
  178: 	kernel/prim0.fs \
  179: 	search.fs \
  180: 	kernel/quotes.fs \
  181: 	kernel/tools.fs \
  182: 	kernel/toolsext.fs \
  183: 	kernel/vars.fs \
  184: 	kernel/accept.fs \
  185: 	kernel/basics.fs \
  186: 	kernel/int.fs \
  187: 	kernel/comp.fs \
  188: 	kernel/recognizer.fs \
  189: 	kernel/io.fs \
  190: 	kernel/input.fs \
  191: 	kernel/license.fs \
  192: 	kernel/nio.fs \
  193: 	kernel/saccept.fs \
  194: 	kernel/doers.fs \
  195: 	kernel/getdoers.fs \
  196: 	kernel/pass.fs \
  197: 	kernel/xchars.fs \
  198: 	string.fs
  199: 
  200: EC_SRC = \
  201: 	asm/README \
  202: 	asm/bitmask.fs \
  203: 	asm/numref.fs \
  204: 	chains.fs \
  205: 	asm/basic.fs \
  206: 	asm/generic.fs \
  207: 	asm/target.fs \
  208: 	ec/README \
  209: 	ec/mirror.fs \
  210: 	ec/shex.fs \
  211: 	ec/builttag.fs \
  212: 	ec/dotx.fs \
  213: 	ec/nesting.fs \
  214: 	build-ec.in
  215: 
  216: GFORTH_FI_SRC1=\
  217: 	assert.fs \
  218: 	backtrac.fs \
  219: 	blocked.fb \
  220: 	blocks.fs \
  221: 	bufio.fs \
  222: 	code.fs \
  223: 	debug.fs \
  224: 	debugs.fs \
  225: 	dis-gdb.fs \
  226: 	ekey.fs \
  227: 
  228: GFORTH_FI_SRC2=\
  229: 	savesys.fs \
  230: 	environ.fs \
  231: 	errors.fs \
  232: 	exboot.fs \
  233: 	except.fs \
  234: 	extend.fs \
  235: 	float.fs \
  236: 	glocals.fs \
  237: 	hash.fs \
  238: 	history.fs \
  239: 	intcomp.fs \
  240: 	i18n.fs \
  241: 	mkdir.fs \
  242: 	libcc.fs \
  243: 	locals.fs \
  244: 	look.fs \
  245: 	mkdir.fs \
  246: 	prelude.fs \
  247: 	quotes.fs \
  248: 	quotedstring.fs \
  249: 	parsedto.fs \
  250: 	search.fs \
  251: 	see.fs \
  252: 	see-ext.fs \
  253: 	simp-see.fs \
  254: 	source.fs \
  255: 	startup.fs \
  256: 	str-exec.fs \
  257: 	struct.fs \
  258: 	struct0x.fs \
  259: 	stuff.fs \
  260: 	substitute.fs \
  261: 	tasker.fs \
  262: 	termsize.fs \
  263: 	utf-8.fs \
  264: 	vt100.fs \
  265: 	vt100key.fs \
  266: 	wordinfo.fs \
  267: 	arch/386/asm.fs arch/386/disasm.fs \
  268: 	arch/amd64/asm.fs arch/amd64/disasm.fs \
  269: 	arch/alpha/asm.fs arch/alpha/disasm.fs arch/alpha/testasm.fs\
  270: 	arch/arm/asm.fs arch/arm/disasm.fs \
  271: 	arch/arm/testdisasm.fs arch/arm/testdisasm.out arch/arm/Makefile \
  272: 	arch/mips/asm.fs arch/mips/disasm.fs arch/mips/insts.fs \
  273: 	arch/mips/testasm.fs arch/mips/testdisasm.fs \
  274: 	arch/power/asm.fs arch/power/disasm.fs arch/power/inst.fs \
  275: 	arch/lm32/asm.fs arch/lm32/testasm.fs
  276: 
  277: # execlude envos.fs into list of distributed sources
  278: GFORTH_FI_DIST_SRC = \
  279: 	$(GFORTH_FI_SRC1) \
  280: 	$(GFORTH_FI_SRC2)
  281: 
  282: GFORTH_FI_SRC = \
  283: 	$(GFORTH_FI_SRC1) \
  284: 	envos.fs \
  285: 	$(GFORTH_FI_SRC2)
  286: 
  287: LIBCC_SRC = cstr.fs unix/socket.fs unix/pthread.fs
  288: 
  289: LIBCC_DIST_SRC = libffi.fs fflib.fs $(LIBCC_SRC)
  290: 
  291: LIBCC_BUILD_SRC = @LIBCC_BUILD_SRC@ $(LIBCC_SRC)
  292: 
  293: 
  294: FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_DIST_SRC) $(EC_SRC) $(LIBCC_DIST_SRC) \
  295: 	ans-report.fs ansi.fs answords.fs \
  296: 	colorize.fs comp-i.fs complex.fs \
  297: 	depth-changes.fs dosekey.fs doskey.fs ds2texi.fs \
  298: 	envos.dos envos.os2 etags.fs fft.fs filedump.fs fi2c.fs \
  299: 	fsl-util.4th glosgen.fs gray.fs httpd.fs install-tags.fs \
  300: 	make-app.fs doc/makedoc.fs locate.fs more.fs onebench.fs \
  301: 	other.fs prims2x.fs prims2x0.6.2.fs proxy.fs random.fs \
  302: 	regexp.fs sokoban.fs string.fs table.fs tags.fs \
  303: 	tt.fs quotations.fs \
  304: 	unbuffer.fs wordsets.fs xwords.fs \
  305: 	test/tester.fs test/ttester.fs \
  306: 	test/coretest.fs test/postpone.fs test/dbltest.fs \
  307: 	test/string.fs test/float.fs test/search.fs test/gforth.fs \
  308: 	test/other.fs test/signals.fs test/checkans.fs \
  309: 	test/primtest.fs test/coreext.fs test/deferred.fs \
  310: 	test/coremore.fs test/gforth-nofast.fs test/libcc.fs \
  311: 	test/macros.fs \
  312: 	bubble.fs siev.fs matrix.fs fib.fs \
  313: 	oof.fs oofsampl.fs objects.fs objexamp.fs mini-oof.fs moof-exm.fs \
  314: 	moofglos.fs fixpath.fs \
  315: 	add.fs lib.fs oldlib.fs sieve.fs \
  316: 	endtry-iferror.fs recover-endtry.fs smartdots.fs
  317: 
  318: COMPAT = compat/README \
  319: 	compat/anslocal.fs \
  320: 	compat/assert.fs \
  321: 	compat/control.fs \
  322: 	compat/defer.fs \
  323: 	compat/exception.fs \
  324: 	compat/execute-parsing.fs \
  325: 	compat/loops.fs \
  326: 	compat/macros.fs \
  327: 	compat/required.fs \
  328: 	compat/strcomp.fs \
  329: 	compat/struct.fs \
  330: 	compat/vocabulary.fs
  331: 
  332: GFORTH_TEXI =  doc/gforth.texi doc/version.texi
  333: 
  334: VMGEN_TEXI = doc/vmgen.texi doc/version.texi doc/fdl.texi
  335: 
  336: ALLSUBDIRS = engine
  337: 
  338: ARCHS =	\
  339: 	arch/generic/machine.h \
  340: 	arch/m68k/machine.h \
  341: 	arch/mips/machine.h \
  342: 	arch/mips/check_prim.c \
  343: 	arch/386/machine.h \
  344: 	arch/hppa/machine.h \
  345: 	arch/hppa/cache.c \
  346: 	arch/sparc/machine.h \
  347: 	arch/power/machine.h \
  348: 	arch/power/_sync_cache_range.c \
  349: 	arch/alpha/machine.h \
  350: 	arch/arm/machine.h \
  351: 	arch/arm/cacheflush0.c \
  352: 	arch/arm/cacheflush-linux.c \
  353: 	arch/ia64/machine.h \
  354: 	arch/ia64/flush_icache_block.c \
  355: 	arch/amd64/machine.h \
  356: 	arch/4stack/README \
  357: 	arch/4stack/asm.fs \
  358: 	arch/4stack/mach.fs \
  359: 	arch/4stack/prim.fs \
  360: 	arch/4stack/mach.sh \
  361: 	arch/4stack/relocate.fs \
  362: 	arch/misc/README \
  363: 	arch/misc/asm.fs \
  364: 	arch/misc/mach.fs \
  365: 	arch/misc/optcmove.fs \
  366: 	arch/misc/prim.fs \
  367: 	arch/misc/sim.fs \
  368: 	arch/misc/sokoban.fs \
  369: 	arch/misc/tt.fs \
  370: 	arch/6502/prim.fs \
  371: 	arch/6502/mach.fs \
  372: 	arch/shboom/asm.fs \
  373: 	arch/shboom/compiler.fs \
  374: 	arch/shboom/dis.fs \
  375: 	arch/shboom/mach.fs \
  376: 	arch/shboom/prim.fs \
  377: 	arch/shboom/dis2.fs \
  378: 	arch/shboom/sh.p \
  379: 	arch/shboom/doers.fs \
  380: 	arch/sharc/mach.fs \
  381: 	arch/sharc/machine.h \
  382: 	arch/sharc/compile.sharc \
  383: 	arch/sharc/systypes.h \
  384: 	arch/sharc/types.h \
  385: 	arch/sharc/g21k-3.3.4-bp1.diff \
  386: 	arch/r8c/asm.fs \
  387: 	arch/r8c/mach.fs \
  388: 	arch/r8c/errors.fs \
  389: 	arch/r8c/prim.fs \
  390: 	arch/r8c/asm-test.fs \
  391: 	arch/r8c/errors.fs \
  392: 	arch/r8c/lauflicht.fs \
  393: 	arch/r8c/tasker.fs \
  394: 	arch/r8c/terminal.fs \
  395: 	arch/sharc/unistd.h \
  396: 	arch/lm32/mach.fs \
  397: 	arch/lm32/mach.sh \
  398: 	arch/lm32/prim.fs \
  399: 	arch/lm32/Makefile \
  400: 	arch/lm32/testasm.disas-ok
  401: 
  402: #not included in distribution until distribution terms are included:
  403: ARCHS_NO_DIST = \
  404: 	arch/6502/asm.fs \
  405: 	arch/6502/cold.fs \
  406: 	arch/6502/softuart.fs \
  407: 	arch/6502/zero.fs \
  408: 	arch/8086/asm.fs \
  409: 	arch/8086/mach.fs \
  410: 	arch/8086/mach.sh \
  411: 	arch/8086/prim.fs \
  412: 	arch/avr/asm.fs \
  413: 	arch/c165/asm.fs \
  414: 	arch/c165/mach.fs \
  415: 	arch/c165/prim.fs \
  416: 	arch/h8/asm.fs \
  417: 	arch/r8c/tt.fs
  418: 
  419: VMGEN_EX = vmgen-ex/Makefile vmgen-ex/README vmgen-ex/disasm.c \
  420: 	vmgen-ex/engine.c vmgen-ex/fib.mini \
  421: 	vmgen-ex/mini-inst.vmg vmgen-ex/mini-super.vmg vmgen-ex/mini.h \
  422: 	vmgen-ex/mini.l vmgen-ex/mini.y vmgen-ex/peephole-blacklist \
  423: 	vmgen-ex/peephole.c vmgen-ex/profile.c vmgen-ex/seq2rule.awk \
  424: 	vmgen-ex/simple.mini vmgen-ex/stat.awk vmgen-ex/support.c \
  425: 	vmgen-ex/test.mini vmgen-ex/test.out
  426: 
  427: VMGEN_EX2 = $(VMGEN_EX:vmgen-ex/%=vmgen-ex2/%)
  428: 
  429: ENGINE_SOURCES = engine/Makefile.in engine/config.h.in \
  430: 	engine/engine.c engine/main.c \
  431: 	engine/io.c engine/support.c engine/signals.c engine/libcc.h.in \
  432: 	engine/profile.c engine/128bit.h \
  433: 	engine/getopt.c engine/getopt1.c engine/getopt.h engine/select.c \
  434: 	engine/ecvt.c engine/memcmp.c engine/rint.c \
  435: 	engine/strtol.c engine/strtoul.c \
  436: 	engine/ansidecl.h engine/memmove.c \
  437: 	engine/pow10.c engine/atanh.c engine/cleanalign.c \
  438: 	engine/strerror.c engine/strsignal.c engine/dblsub.c \
  439: 	engine/fnmatch.h engine/fnmatch.c \
  440: 	engine/makefile.dos engine/makefile.os2
  441: 
  442: SOURCES	= $(ENGINE_SOURCES) compat Makefile.in Makedist.in \
  443: 	gforthmi.in vmgen.in preforth.in libforth.in gforthker.in gfgen README.vmgen NEWS.vmgen \
  444: 	autogen.sh configure.in configure config.sub config.guess \
  445: 	elisp-comp missing stamp-h.in envos.fs.in \
  446: 	iss.sh install-sh INSTALL INSTALL.BINDIST NEWS README ToDo BUGS \
  447: 	BUILD-FROM-SCRATCH model \
  448: 	COPYING COPYING.LIB COPYING.DOC AUTHORS ChangeLog Benchres aclocal.m4 \
  449: 	doc/gforth.ds doc/gforth.1 doc/version.texi.in \
  450: 	doc/vmgen.texi doc/fdl.texi doc/gpl.texi \
  451: 	gforth.el \
  452: 	$(ARCHS) \
  453: 	INSTALL.DOS makefile.dos mkdosmf.sed config.bat \
  454: 	dosconf.h gforthmi.bat mkinstalldirs siteinit.fs \
  455: 	versions.bsh \
  456: 	configure.cmd mkos2mf.sed os2conf.h makefile.os2 \
  457: 	gforthmi.cmd glosgen.glo doc/glossaries.doc \
  458: 	$(INCLUDES) $(FORTH_SRC) $(COMPAT) $(VMGEN_EX) $(VMGEN_EX2) \
  459: 	timings.sc \
  460: 	test/coretest.out test/checkans.out test/gforth.out \
  461: 	cache*.vmg peeprules.vmg prim
  462: 
  463: RCS_FILES =  ToDo model high-level
  464: 
  465: ENGINES = gforth$(EXT) @NO_EC@ gforth-ditc$(EXT) gforth-itc$(EXT) $(PROFEXES)
  466: 
  467: ENGINES_FAST = @NO_EC@ gforth-fast$(OPT)$(EXT) #gforth-native$(OPT)$(EXT) 
  468: 
  469: GEN = $(ENGINES) $(ENGINES_FAST) @gforth_elc@
  470: 
  471: # things that need a working forth system to be generated
  472: FORTH_GEN_ENGINE=engine/prim.i engine/prim_lab.i engine/prim_names.i \
  473: 	engine/prim_superend.i engine/profile.i \
  474: 	engine/prim_num.i engine/prim_grp.i \
  475: 	engine/costs.i engine/super2.i
  476: FORTH_GEN_ENGINE_FAST= \
  477: 	engine/prim-fast.i engine/prim_lab-fast.i engine/prim_names-fast.i \
  478: 	engine/prim_superend-fast.i engine/profile-fast.i \
  479: 	engine/prim_num-fast.i engine/prim_grp-fast.i \
  480: 	engine/costs-fast.i engine/super2-fast.i
  481: FORTH_GEN_PRIMB = $(FORTH_GEN_ENGINE) kernel/aliases.fs kernel/prim.fs
  482: FORTH_GEN0 = prim.b $(FORTH_GEN_PRIMB)
  483: FORTH_GEN =  $(FORTH_GEN0) @KERNEL@ @NO_CROSS@ gforth.fi
  484: # this is used for antidependences,
  485: FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@ build-ec
  486: 
  487: #kernel dependencies
  488: KERN_DEPS = $(KERN_SRC) kernel/version.fs machpc.fs $(FORTH_GEN0) compat/strcomp.fs
  489: 
  490: #distributed documentation
  491: DOCDIST = doc/gforth.info doc/gforth.info-* doc/gforth.ps \
  492: 	  doc/vmgen.info doc/vmgen.ps
  493: 
  494: BKERNLS = kernl16b$(EC).fi kernl16l$(EC).fi \
  495: 	  kernl32b$(EC).fi kernl32l$(EC).fi \
  496: 	  kernl64b$(EC).fi kernl64l$(EC).fi
  497: 
  498: KERNLS = kernl16b$(EC).fi- kernl16l$(EC).fi- \
  499: 	 kernl32b$(EC).fi- kernl32l$(EC).fi- \
  500: 	 kernl64b$(EC).fi- kernl64l$(EC).fi-
  501: 
  502: # -------------        Make forth images
  503: GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) \
  504: 	doc/gforth.texi doc/gforth.dvi doc/gforth.ps \
  505: 	doc/vmgen.dvi doc/vmgen.ps \
  506: 	Makefile Makedist engine/Makefile configure
  507: 
  508: #standards.info recommends this:
  509: .SUFFIXES:
  510: .SUFFIXES: .c .o
  511: 
  512: all: kernel/version.fs more @NO_CROSS@ check
  513: 
  514: # use this dependency for phony targets just as mostlyclean,...
  515: FORCE: ;
  516: 
  517: #targets of failed commands should be deleted:
  518: .DELETE_ON_ERROR:
  519: 
  520: #this rule avoids remaking everything after minor changes in Makefile.in
  521: version:	Makefile.in configure.in
  522: 		if test -r $@ && test x'$(VERSION)' = x`cat $@` ; then true ; else echo $(VERSION) > $@ ; fi
  523: 
  524: # With dos we use normal dos echo
  525: # we cannot pipe the output to engine/version.h directly because
  526: # of the "/ and \" problem. Copying works because we use the
  527: # shell und file utilities.
  528: 
  529: kernel/version.fs:	version
  530: 	echo ": version-string s\" $(VERSION)\" ;" > kernel/version.fs
  531: 
  532: more:	$(ENGINES) $(FORTH_GEN) $(GEN) @build_libcc_named@
  533: 
  534: #from the gcc Makefile: 
  535: #"Deletion of files made during compilation.
  536: # There are four levels of this:
  537: #   `mostlyclean', `clean', `distclean' and `realclean'.
  538: # `mostlyclean' is useful while working on a particular type of machine.
  539: # It deletes most, but not all, of the files made by compilation.
  540: # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
  541: # `clean' deletes everything made by running `make all'.
  542: # `distclean' also deletes the files made by config.
  543: # `realclean' also deletes everything that could be regenerated automatically."
  544: 
  545: mostlyclean:	FORCE
  546: 		-$(RM) -rf engine/*.s gforth.fi *.fi~ *.fi- kernel/version.fs \
  547: 		*TAGS gforth~ \
  548: 		doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
  549: 		doc/gforth.aux doc/gforth.cp doc/gforth.cps \
  550: 		doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
  551: 		doc/gforth.pg \
  552: 		doc/gforth.toc doc/gforth.tp doc/gforth.vr html \
  553: 		gforth-$(VERSION).tar.gz
  554: 
  555: # Just the stuff needed to rebuild the documentation nac03feb1999
  556: docclean:	FORCE
  557: 		-$(RM) -rf doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
  558: 		doc/gforth.aux doc/gforth.cp doc/gforth.cps \
  559: 		doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
  560: 		doc/gforth.pg \
  561: 		doc/gforth.toc doc/gforth.tp doc/gforth.vr html
  562: 
  563: clean:		mostlyclean
  564: 	-$(RM) -rf $(GEN) *.o engine/*.o arch/*/*.o version \
  565: 	gforth-itc-noll$(EXT)  engine/gforth-itc-noll$(EXT)  \
  566: 	gforth-ditc-noll$(EXT) engine/gforth-ditc-noll$(EXT) \
  567: 	gforth-prof-noll$(EXT) engine/gforth-prof-noll$(EXT) \
  568: 	engine/prim-s.i
  569: 	for i in gforth gforth-fast gforth-native; do for j in $(OPTS); do rm -f engine/$$i$${j}$(EXT) $$i$${j}$(EXT); done; done
  570: 
  571: distclean:	clean
  572: 		-$(RM) -rf config.cache config.log config.status \
  573: 		engine/config.h Makefile Makedist engine/Makefile \
  574: 		stamp-h engine/stamp-h \
  575: 		doc/version.texi gforthmi vmgen preforth \
  576: 		prim-fast.b $(FORTH_GEN_ENGINE_FAST)
  577: 
  578: #realclean is useless, but dangerous, so it's commented out
  579: realclean:	distclean
  580: 		-$(RM) -rf $(GEN_PRECIOUS) `cat .cvsignore`
  581: 
  582: #mostlyclean, but also remove some of the stuff that is distributed
  583: virtualclean:	mostlyclean
  584: 		-$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \
  585: 		gforth-$(VERSION).tar.gz config.cache *~ */*~
  586: 
  587: maintainer-clean: realclean
  588: 
  589: #Some makes (Ultrix, SunOS, IRIX) are so broken, they cannot read the
  590: #Makefile if it contains our dist rules.  Therefore we have put these
  591: #rules in Makedist (you can use them with GNU make on these systems).
  592: 
  593: dist:		Makedist FORCE
  594: 		$(MAKE) -f Makedist d$@
  595: 
  596: dosdist:	Makedist FORCE
  597: 		$(MAKE) -f Makedist d$@
  598: 
  599: srcdist:	Makedist FORCE
  600: 		$(MAKE) -f Makedist d$@
  601: 
  602: srconlydist:	Makedist FORCE
  603: 		$(MAKE) -f Makedist d$@
  604: 
  605: docdist:	Makedist FORCE
  606: 		$(MAKE) -f Makedist d$@
  607: 
  608: htmldist:	Makedist FORCE
  609: 		$(MAKE) -f Makedist d$@
  610: 
  611: bindist:	Makedist FORCE
  612: 		$(MAKE) -f Makedist d$@
  613: 
  614: binonlydist:	Makedist FORCE
  615: 		$(MAKE) -f Makedist d$@
  616: 
  617: debdist:	Makedist FORCE
  618: 		$(MAKE) -f Makedist d$@
  619: 
  620: #HPUX make breaks the cycle differently when the dates are equal, so
  621: # touch some of the files if it acts up
  622: hpux-workaround:
  623: 	touch $(FORTH_GEN_PRIMB)
  624: 
  625: #strip gforth, because the debugging stuff is hardly useful once
  626: # gforth manages to execute more than a few primitives.
  627: 
  628: #install does not depend on gforth.info, because that would require
  629: #supplying a lot of files that can be easily generated (only info is
  630: #hard to generate).
  631: #we rebuild gforth.fi, because it contains some path names.
  632: #we delete $build/gforth.fi and $build/install.TAGS after installation because of ownership.
  633: install:	gforth$(EXT) $(FORTH_SRC) $(kernel_fi) gforthmi vmgen doc/gforth.1 prim install.TAGS installdirs @NO_CROSS@ gforth.fi
  634: 		$(NORMAL_INSTALL)
  635: 		touch $(DESTDIR)$(siteforthdir)/siteinit.fs
  636: 		-$(RM) $(DESTDIR)$(bindir)/gforth$(EXT) $(DESTDIR)$(bindir)/gforth-$(VERSION)$(EXT) $(DESTDIR)$(bindir)/gforthmi $(DESTDIR)$(bindir)/vmgen
  637: 		-$(RM) $(DESTDIR)$(bindir)/gforth-fast$(EXT) $(DESTDIR)$(bindir)/gforth-fast-$(VERSION)$(EXT)
  638: 		-$(RM) $(DESTDIR)$(bindir)/gforth-itc$(EXT) $(DESTDIR)$(bindir)/gforth-itc-$(VERSION)$(EXT)
  639: 		-$(RM) $(DESTDIR)$(bindir)/gforth-ditc$(EXT) $(DESTDIR)$(bindir)/gforth-ditc-$(VERSION)$(EXT)
  640: 		$(INSTALL_PROGRAM) gforth$(EXT) $(DESTDIR)$(bindir)/gforth-$(VERSION)$(EXT)
  641: 		-$(MASSAGE_EXE) $(DESTDIR)$(bindir)/gforth-$(VERSION)$(EXT)
  642: 		(cd $(DESTDIR)$(bindir) && $(LN_S) gforth-$(VERSION)$(EXT) gforth$(EXT))
  643: 		$(INSTALL_PROGRAM) gforth-fast$(EXT) $(DESTDIR)$(bindir)/gforth-fast-$(VERSION)$(EXT)
  644: 		-$(MASSAGE_EXE) $(DESTDIR)$(bindir)/gforth-fast-$(VERSION)$(EXT)
  645: 		(cd $(DESTDIR)$(bindir) && $(LN_S) gforth-fast-$(VERSION)$(EXT) gforth-fast$(EXT))
  646: 		$(INSTALL_PROGRAM) gforth-itc$(EXT) $(DESTDIR)$(bindir)/gforth-itc-$(VERSION)$(EXT)
  647: 		(cd $(DESTDIR)$(bindir) && $(LN_S) gforth-itc-$(VERSION)$(EXT) gforth-itc$(EXT))
  648: 		$(INSTALL_PROGRAM) gforth-ditc$(EXT) $(DESTDIR)$(bindir)/gforth-ditc-$(VERSION)$(EXT)
  649: 		(cd $(DESTDIR)$(bindir) && $(LN_S) gforth-ditc-$(VERSION)$(EXT) gforth-ditc$(EXT))
  650: 		$(INSTALL_SCRIPT) gforthmi $(DESTDIR)$(bindir)/gforthmi-$(VERSION)
  651: 		$(INSTALL_SCRIPT) vmgen $(DESTDIR)$(bindir)/vmgen-$(VERSION)
  652: 		(cd $(DESTDIR)$(bindir) && $(LN_S) gforthmi-$(VERSION) gforthmi)
  653: 		(cd $(DESTDIR)$(bindir) && $(LN_S) vmgen-$(VERSION) vmgen)
  654: 		-$(INSTALL_DATA) $(srcdir)/doc/gforth.1 $(DESTDIR)$(man1dir)
  655: 		-for i in $(srcdir)/doc/gforth.info* $(srcdir)/doc/vmgen.info*; do $(INSTALL_DATA) $$i $(DESTDIR)$(infodir); done
  656: 		for i in $(FORTH_SRC) $(COMPAT) envos.fs prim; do \
  657: 			$(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(datadir)/gforth/$(VERSION)/$$i; \
  658: 		done
  659: 		$(INSTALL_DATA) $(kernel_fi) $(DESTDIR)$(libdir)/gforth$(ARCH)/$(VERSION)
  660: 		@if test -d "$(DESTDIR)$(emacssitelispdir)"; then \
  661: 			for i in gforth.el @gforth_elc@; do \
  662: 				$(INSTALL_DATA) $$i $(DESTDIR)$(emacssitelispdir); \
  663: 			done; \
  664: 		else \
  665: 			echo '>>>>>Please install gforth.{el,elc} in your .../emacs/site-lisp directory'; \
  666: 		fi
  667: 		-$(RM) gforth.fi
  668: 		@NO_CROSS@GFORTHD="./gforth-ditc$(EXT) -p $(DESTDIR)$(libdir)/gforth/site-forth$(PATHSEP)$(DESTDIR)$(siteforthdir)$(PATHSEP)$(DESTDIR)$(datadir)/gforth/$(VERSION) -i $(kernel_fi)" GFORTH="./gforth-ditc$(EXT) -p $(DESTDIR)$(libdir)/gforth/site-forth$(PATHSEP)$(DESTDIR)$(siteforthdir)$(PATHSEP)$(DESTDIR)$(datadir)/gforth/$(VERSION) --die-on-signal -i $(kernel_fi) $(STARTUP)" includedir=$(includedir) bindir=$(bindir) libccdir=$(libccdir) GFORTHPATH=.:"$$GFORTHPATH" GFORTHDESTDIR="$(DESTDIR)" ./gforthmi gforth.fi $(FORTHSIZES) $(STARTUP)
  669: 		@NO_CROSS@$(INSTALL_DATA) gforth.fi $(DESTDIR)$(libdir)/gforth$(ARCH)/$(VERSION)
  670: 		$(INSTALL_DATA) install.TAGS $(DESTDIR)$(datadir)/gforth/$(VERSION)/TAGS
  671: 		$(RM) install.TAGS @NO_CROSS@gforth.fi
  672: 		$(INSTALL_DATA) include/gforth$(ARCH)/$(VERSION)/* $(DESTDIR)$(includedir)/gforth$(ARCH)/$(VERSION)
  673: 		if test -n "$(LIBTOOL)"; then for i in $(LIBCC_BUILD_SRC); do \
  674: 		   $(LIBTOOL) --silent --mode=install $(INSTALL) lib/gforth$(ARCH)/$(VERSION)/libcc-named/`basename $$i .fs`.la $(DESTDIR)$(libccdir)`basename $$i .fs`.la; \
  675: 		done; fi
  676: 		$(POST_INSTALL)
  677: 		$(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gforth.info
  678: 		$(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/vmgen.info
  679: 
  680: install-strip:	install
  681: 
  682: installdirs:	mkinstalldirs
  683: 		$(NORMAL_INSTALL)
  684: 		for i in $(bindir) $(man1dir) $(infodir) $(libdir)/gforth$(ARCH)/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(siteforthdir) $(includedir)/gforth$(ARCH)/$(VERSION) $(libccdir); do \
  685: 			$(srcdir)/mkinstalldirs $(DESTDIR)$$i; \
  686: 		done
  687: 		#
  688: 		for i in $(INSTALLDIRS); do \
  689: 			$(srcdir)/mkinstalldirs $(DESTDIR)$(datadir)/gforth/$(VERSION)/$$i; \
  690: 		done
  691: 
  692: #deinstall all files specific to this version of gforth
  693: #to uninstall version foo, type `make uninstall VERSION=foo'
  694: uninstall:	FORCE
  695: 		$(NORMAL_UNINSTALL)
  696: 		-$(RM) -rf $(DESTDIR)$(libdir)/gforth$(ARCH)/$(VERSION) $(DESTDIR)$(datadir)/gforth/$(VERSION) $(DESTDIR)$(bindir)/gforth-$(VERSION)$(EXT) $(DESTDIR)$(bindir)/gforth-fast-$(VERSION)$(EXT) $(DESTDIR)$(bindir)/gforth-itc-$(VERSION)$(EXT) $(DESTDIR)$(bindir)/gforthmi-$(VERSION) $(DESTDIR)$(bindir)/vmgen-$(VERSION) $(DESTDIR)$(includedir)/gforth/$(VERSION)
  697: 		@echo -e "To remove Gforth completely, type\n$(RM) -rf $(DESTDIR)$(bindir)/gforth$(EXT) $(DESTDIR)$(bindir)/gforth-fast$(EXT) $(DESTDIR)$(bindir)/gforth-itc$(EXT) $(DESTDIR)$(bindir)/gforthmi $(DESTDIR)$(bindir)/vmgen $(DESTDIR)$(man1dir)/gforth.1 $(DESTDIR)$(infodir)/gforth.info* $(DESTDIR)$(datadir)/gforth $(DESTDIR)$(libdir)/gforth"
  698: 
  699: build-libcc-named: $(LIBCC_BUILD_SRC) $(FORTH_GEN) $(GEN) FORCE
  700: 		$(RMTREE) lib/gforth$(ARCH)/$(VERSION)/libcc-named/
  701: 		for i in $(LIBCC_BUILD_SRC); do ./libforth -e "s\" `pwd`/lib/gforth$(ARCH)/$(VERSION)/libcc-named/\" libcc-named-dir-v 2! libcc-path clear-path libcc-named-dir libcc-path also-path :noname 2drop s\" $(DESTDIR)$(libccdir)\" ; is replace-rpath" $(srcdir)/$$i -e bye; done
  702: 
  703: check:		gforths	gforth.fi 
  704: 		$(MAKE) checkone check-nofast ENGINE="./gforth$(EXT) --no-dynamic" >/dev/null 2>&1
  705: 		$(MAKE) checkone check-nofast ENGINE="./gforth-itc$(EXT)" >/dev/null 2>&1
  706: 		$(MAKE) checkone check-nofast ENGINE="./gforth-ditc$(EXT)" >/dev/null 2>&1
  707: 		$(MAKE) checkone ENGINE="./gforth-fast$(EXT) --no-dynamic" >/dev/null 2>&1
  708: 		$(MAKE) checkone check-nofast ENGINE="./gforth$(EXT)" >/dev/null 2>&1
  709: 		$(MAKE) checkone ENGINE="./gforth-fast$(EXT)" >/dev/null 2>&1
  710: 		@echo "*** Check successful ***"
  711: 		./gforth-fast$(EXT) --diag -e bye
  712: 
  713: checkone test: gforth.fi engine/prim-s.i
  714: 		$(FORTH) test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs test/string.fs test/float.fs test/deferred.fs test/coreext.fs test/search.fs -e bye 2>/dev/null | tr -d '\015' | diff -c - $(srcdir)/test/coretest.out
  715: 		$(FORTH) test/other.fs -e bye
  716: 		$(FORTHS) test/signals.fs -e bye
  717: 		$(FORTHS) test/coremore.fs test/gforth.fs test/macros.fs -e bye 2>&1 | tr -d '\015' | diff -c - $(srcdir)/test/gforth.out
  718: 		$(FORTH) code.fs test/checkans.fs -e bye | tr -d '\015' | diff -c - $(srcdir)/test/checkans.out
  719: 		$(FORTH) prims2x.fs -e \
  720: 		  "c-flag on s\" prim.i\" out-filename 2! s\" $(srcdir)/prim.b\" ' output-c ' output-c-combined process-file bye"| \
  721: 		  tr -d '\015' | grep -v '^#line '|diff -c - engine/prim-s.i
  722: 
  723: check-nofast: gforth.fi
  724: 		$(FORTHS) test/gforth-nofast.fs -e bye
  725: 
  726: test/primtest.fi: test/primtest.fs mach32l.fs cross.fs
  727: 		$(FORTHB) -e 's" mach32l.fs"' $(srcdir)/test/primtest.fs -e "save-cross $@ $(bindir)/gforth-$(VERSION) bye"
  728: 
  729: primtest:	gforth gforth-native test/primtest.fi FORCE
  730: 		(echo rs|ENVVAR=bla ./gforth -i test/primtest.fi) && (echo rs|ENVVAR=bla ./gforth-native -i test/primtest.fi); echo $$?
  731: 
  732: bench:		gforth-fast$(EXT) gforth.fi
  733: 		@echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
  734: 		time $(FORTH_FAST) siev.fs -e "main bye"
  735: 		time $(FORTH_FAST) bubble.fs -e "main bye"
  736: 		time $(FORTH_FAST) matrix.fs -e "main bye"
  737: 		time $(FORTH_FAST) fib.fs -e "main bye"
  738: 
  739: onebench one-bench:
  740: 	$(FORTH_FAST) onebench.fs
  741: 
  742: all-bench allbench:
  743: 	./gforth-fast --dynamic onebench.fs
  744: 	./gforth-fast --no-dynamic onebench.fs
  745: 	./gforth --dynamic onebench.fs
  746: 	./gforth --no-dynamic onebench.fs
  747: 	./gforth-itc onebench.fs
  748: 	./gforth-ditc onebench.fs
  749: 
  750: # -------------	Make forth images
  751: 
  752: # How to make new images:
  753: # 1. Produce an image called kernlXYZ.fi-
  754: #    the original kernel.fi is not touched because it's needed for creation
  755: # 2. copy old kernlXYZ.fi to kernlXYZ.fi~
  756: #    that's a backup copy in case the new kernels don't work
  757: # 3. copy new kernels to kernlXYZ.fi
  758: #    these are the ones we want to use now
  759: 
  760: kernl16l$(EC).fi-:	$(KERN_DEPS) mach16l.fs
  761: 		$(PREFORTH) -e 's" mach16l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16l$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
  762: 
  763: kernl16b$(EC).fi-:	$(KERN_DEPS) mach16b.fs
  764: 		$(PREFORTH) -e 's" mach16b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16b$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
  765: 
  766: kernl32l$(EC).fi-:	$(KERN_DEPS) mach32l.fs
  767: 		$(PREFORTH) -e 's" mach32l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32l$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
  768: 
  769: kernl32b$(EC).fi-:	$(KERN_DEPS) mach32b.fs
  770: 		$(PREFORTH) -e 's" mach32b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32b$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
  771: 
  772: kernl64l$(EC).fi-:	$(KERN_DEPS) mach64l.fs
  773: 		$(PREFORTH) -e 's" mach64l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64l$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
  774: 
  775: kernl64b$(EC).fi-:	$(KERN_DEPS) mach64b.fs
  776: 		$(PREFORTH) -e 's" mach64b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64b$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
  777: 
  778: #Solaris make does not like that:
  779: @GNUMAKE@kernl-%.fi:	arch/%/mach.fs arch/%/prim.fs arch/%/asm.fs $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
  780: @GNUMAKE@		$(PREFORTH) -e 's" $<"' $(srcdir)/kernel/main.fs -e "save-cross $@- $(bindir)/gforth-$(VERSION) bye"
  781: @GNUMAKE@		if [ -f `echo $< | sed s/fs/sh/` ]; \
  782: @GNUMAKE@		then sh `echo $< | sed s/fs/sh/` $@; \
  783: @GNUMAKE@		else $(CP) $@- $@; \
  784: @GNUMAKE@		fi
  785: 
  786: #SunOS make does not like that
  787: #arch/%/mach.fs:	arch/%/prim.fs arch/%/asm.fs
  788: 
  789: kernl16b$(EC).fi:	$(KERNLS)
  790: 		-$(CP) kernl16b$(EC).fi kernl16b$(EC).fi~
  791: 		-$(CP) kernl16b$(EC).fi- kernl16b$(EC).fi
  792: 
  793: kernl16l$(EC).fi:	$(KERNLS)
  794: 		-$(CP) kernl16l$(EC).fi kernl16l$(EC).fi~
  795: 		-$(CP) kernl16l$(EC).fi- kernl16l$(EC).fi
  796: 
  797: kernl32b$(EC).fi:	$(KERNLS)
  798: 		-$(CP) kernl32b$(EC).fi kernl32b$(EC).fi~
  799: 		-$(CP) kernl32b$(EC).fi- kernl32b$(EC).fi
  800: 
  801: kernl32l$(EC).fi:	$(KERNLS)
  802: 		-$(CP) kernl32l$(EC).fi kernl32l$(EC).fi~
  803: 		-$(CP) kernl32l$(EC).fi- kernl32l$(EC).fi
  804: 
  805: kernl64b$(EC).fi:	$(KERNLS)
  806: 		-$(CP) kernl64b$(EC).fi kernl64b$(EC).fi~
  807: 		-$(CP) kernl64b$(EC).fi- kernl64b$(EC).fi
  808: 
  809: kernl64l$(EC).fi:	$(KERNLS)
  810: 		-$(CP) kernl64l$(EC).fi kernl64l$(EC).fi~
  811: 		-$(CP) kernl64l$(EC).fi- kernl64l$(EC).fi
  812: 
  813: #kernl%.fi:	kernl%.fi- $(KERNLS)
  814: #		-$(CP) $@ $@~
  815: #		-$(CP) $< $@
  816: 
  817: gforth.fi:	$(kernel_fi) gforthmi gforth-ditc$(EXT) $(GFORTH_FI_SRC) comp-i.fs
  818: 		@NO_CROSS@GFORTHD="./gforth-ditc$(EXT) -p .$(PATHSEP)$(srcdir)" GFORTH="./gforth-ditc$(EXT) --die-on-signal -p .$(PATHSEP)$(srcdir) -i $(kernel_fi) $(STARTUP)" includedir=`pwd`/include bindir=`pwd` libccdir=`pwd`/lib/gforth$(ARCH)/$(VERSION)/libcc-named/ ./gforthmi gforth.fi $(FORTHSIZES) $(FORTHKFLAGS) $(STARTUP)
  819: 
  820: # -------------	Make c-engine
  821: 
  822: prim.b:		prim cache0.vmg
  823: 		(cd $(srcdir) && $(M4) -Dcondbranch_opt=0 prim) >$@
  824: 		sleep 1 #should make hpux-workaround unnecessary
  825: 
  826: prim-fast.b:	prim cache-fast$(STACK_CACHE_DEFAULT_FAST).vmg cache-regs$(STACK_CACHE_REGS).vmg peeprules.vmg Makefile
  827: 		(cd $(srcdir) && $(M4) -Dcondbranch_opt=@condbranch_opt@ -DSTACK_CACHE_FILE=cache-fast$(STACK_CACHE_DEFAULT_FAST).vmg -DSTACK_CACHE_REGS=cache-regs$(STACK_CACHE_REGS).vmg prim) >$@
  828: 		sleep 1 #should make hpux-workaround unnecessary
  829: 
  830: $(FORTH_GEN_ENGINE_FAST): prim-fast.b prims2x.fs
  831: 		GFORTH="$(PREFORTH)" $(srcdir)/gfgen -fast
  832: 
  833: $(FORTH_GEN_ENGINE): prim.b prims2x.fs
  834: 		GFORTH="$(PREFORTH)" $(srcdir)/gfgen
  835: 
  836: engine/prim-s.i: engine/prim.i
  837: 	grep -v '^#line ' $(srcdir)/engine/prim.i >$@
  838: 
  839: kernel/aliases.fs:	prim.b prims2x.fs kernel/aliases0.fs
  840: 		$(CP) kernel/aliases0.fs $@-
  841: 		$(PREFORTH) prims2x.fs -e "forth-flag on s\" prim.b\" ' output-alias ' noop process-file bye" >>$@-
  842: 		$(CP) $@- $@
  843: 		$(RM) $@-
  844: 
  845: kernel/prim.fs:	prim.b prims2x.fs kernel/prim0.fs
  846: 		$(CP) kernel/prim0.fs kernel/prim.fs-
  847: 		$(PREFORTH) prims2x.fs -e "forth-flag on s\" prim.b\" ' output-forth ' output-forth-combined process-file bye" >>$@-
  848: 		$(CP) $@- $@
  849: 		$(RM) $@-
  850: 
  851: 
  852: OPTS = @OPTS@
  853: 
  854: MAKELINE-ll-reg   = OPT=-ll-reg OPTDEFINES="-DFORCE_LL -DFORCE_REG" OPTOBJECTS=
  855: MAKELINE-noll-reg = OPT=-noll-reg OPTDEFINES=-DFORCE_REG OPTOBJECTS=dblsub.o
  856: MAKELINE-ll       = OPT=-ll OPTDEFINES=-DFORCE_LL OPTOBJECTS=
  857: MAKELINE-noll     = OPT=-noll OPTDEFINES= OPTOBJECTS=dblsub.o
  858: 
  859: gforth$(OPT)$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE) engine/config.h @kernel_anti_dependence@
  860: 	if test -z "$(OPT)"; then \
  861: 		for i in $(OPTS); do $(MAKE) optgforth OPT=$$i && $(CP) gforth$${i}$(EXT) $@ && break; done; \
  862: 	else \
  863: 		( cd engine && $(MAKE) $@ ) && \
  864: 		$(CP) engine/$@ $@ && \
  865: 		$(MASSAGE_EXE) $@; \
  866: 		@GFORTH_EXE@; \
  867: 		@NO_CROSS@ $(MAKE) checkone check-nofast ENGINE=./engine/$@; \
  868: 	fi
  869: 
  870: optgforth:
  871: 	$(MAKE) gforth$(OPT)$(EXT) $(MAKELINE$(OPT))
  872: 
  873: gforth-fast$(OPT)$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE_FAST) engine/config.h
  874: 	if test -z "$(OPT)"; then \
  875: 		for i in $(OPTS); do $(MAKE) optgforth-fast OPT=$$i && $(CP) gforth-fast$${i}$(EXT) $@ && break; done; \
  876: 	else \
  877: 		( cd engine && $(MAKE) $@ ) && \
  878: 		$(CP) engine/$@ $@ && \
  879: 		$(MASSAGE_EXE) $@; \
  880: 		@GFORTHFAST_EXE@; \
  881: 		@NO_CROSS@ $(MAKE) checkone ENGINE=./engine/$@; \
  882: 	fi
  883: 
  884: optgforth-fast:
  885: 	$(MAKE) gforth-fast$(OPT)$(EXT) $(MAKELINE$(OPT))
  886: 
  887: gforth-native$(OPT)$(EXT):	engines-fast
  888: 		$(CP) engine/$@ $@
  889: 		-$(MASSAGE_EXE) $@
  890: #@GFORTHX_EXE@
  891: 
  892: gforth-itc$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE) engine/Makefile engine/config.h
  893: 		cd engine && $(MAKE) gforth-itc-noll$(EXT) $(MAKELINE-noll)
  894: 		$(CP) engine/gforth-itc-noll$(EXT) $@
  895: 		@GFORTHITC_EXE@
  896: 
  897: gforth-ditc$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE) engine/Makefile engine/config.h
  898: 		cd engine && $(MAKE) gforth-ditc-noll$(EXT) $(MAKELINE-noll)
  899: 		$(CP) engine/gforth-ditc-noll$(EXT) $@
  900: 		@GFORTHDITC_EXE@
  901: 
  902: gforth-prof$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE) engine/Makefile engine/config.h
  903: 		cd engine && $(MAKE) gforth-prof-noll$(EXT) $(MAKELINE-noll)
  904: 		$(CP) engine/gforth-prof-noll$(EXT) $@
  905: 
  906: gforths: $(ENGINES) $(ENGINES_FAST)
  907: 
  908: # ------------- additional C primitives
  909: 
  910: .SUFFIXES:	.c .pri
  911: 
  912: .pri.c:		$< prim2cl.fs
  913: 		$(FORTHK) prim2cl.fs -e "file $< altogether bye" >$@
  914: 
  915: .c.so:		$<
  916: 		$(GCC) -shared $(CFLAGS) $(CPPFLAGS) $< -o $@
  917: 
  918: # -------------	Make Documentation
  919: 
  920: #TAGS is a GNU standard target
  921: TAGS:		gforth.TAGS
  922: 		$(CP) gforth.TAGS $@
  923: 
  924: tags:		gforth.tags
  925: 		$(CP) gforth.tags $@
  926: 
  927: install.TAGS:	TAGS install-tags.fs
  928: 		sed 's;^\$(srcdir)/;;' TAGS|$(PREFORTH) -e 's" '$(datadir)/gforth/$(VERSION)/'"' $(srcdir)/install-tags.fs -e bye >install.TAGS
  929: 
  930: gforth.TAGS:	@kernel_fi@ gforth$(EXT) $(GFORTH_FI_SRC) prim.TAGS kernel.TAGS
  931: 		$(FORTHK) etags.fs except.fs startup.fs -e bye
  932: 		cat TAGS prim.TAGS kernel.TAGS >gforth.TAGS
  933: 		rm TAGS
  934: 
  935: gforth.tags:	@kernel_fi@ gforth$(EXT) $(GFORTH_FI_SRC) prim.tags kernel.tags
  936: 		$(FORTHK) tags.fs except.fs startup.fs -e bye
  937: 		cat tags prim.tags kernel.tags >gforth.tags
  938: 		rm tags
  939: 
  940: prim.TAGS: 	prim.b prims2x.fs
  941: 		$(PREFORTH) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-tag dup process-file bye"|sed 's#^./prim#prim#' >$@-
  942: 		$(CP) $@- $@
  943: 		$(RM) $@-
  944: 
  945: prim.tags: 	prim.b prims2x.fs
  946: 		#echo '2c\' >prim.TAGS.sed
  947: 		#echo $(srcdir)/prim >>prim.TAGS.sed
  948: 		#$(PREFORTH) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-tag dup process-file bye" | sed -f prim.TAGS.sed >$@-
  949: 		$(PREFORTH) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-vi-tag dup process-file bye" >$@-
  950: 		$(CP) $@- $@
  951: 		$(RM) $@-
  952: 
  953: kernel.TAGS:
  954: 		$(RM) kernl16l$(EC).fi-; $(MAKE) @kernel_fi@
  955: 
  956: kernel.tags:
  957: 		$(RM) kernl16l$(EC).fi-; $(MAKE) @kernel_fi@
  958: 
  959: #elc files
  960: gforth.elc:	gforth.el
  961: 		-$(EMACS) -batch -f batch-byte-compile gforth.el
  962: 
  963: #Documentation
  964: 
  965: doc/doc.fd:	doc/makedoc.fs $(GFORTH_FI_SRC) code.fs objects.fs oof.fs moofglos.fs
  966: 		$(FORTHK) -e "s\" doc/doc.fd\"" doc/makedoc.fs except.fs startup.fs code.fs objects.fs oof.fs moofglos.fs regexp.fs fft.fs -e bye
  967: 
  968: doc/crossdoc.fd:	$(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
  969: 		$(FORTHK) -e 's" mach32l.fs"' kernel/main.fs -e bye
  970: 
  971: doc/gforth.texi: doc/gforth.ds prim.b ds2texi.fs prims2x.fs \
  972: 		doc/doc.fd doc/crossdoc.fd
  973: 		$(PREFORTH) ds2texi.fs prims2x.fs -e "s\" $(srcdir)/prim.b\" ' register-doc ' noop process-file" doc/crossdoc.fd doc/doc.fd -e "s\" $(srcdir)/doc/gforth.ds\" r/o open-file throw ds2texi bye" >$@-
  974: 		$(CP) $@- $@
  975: 		$(RM) $@-
  976: 
  977: checkdoc:	doc/gforth.ds prim.b ds2texi.fs prims2x.fs doc/doc.fd doc/crossdoc.fd answords.fs doc/gforth.texi
  978: 		$(FORTH) ds2texi.fs prims2x.fs -e "s\" $(srcdir)/prim.b\" ' register-doc ' noop process-file" doc/crossdoc.fd doc/doc.fd answords.fs -e bye
  979: 		-grep unknown doc/gforth.texi
  980: 		-grep doc- doc/gforth.texi| grep -v '^@c'
  981: 
  982: dvi:		doc/gforth.dvi doc/vmgen.dvi
  983: 
  984: pdf:		doc/gforth.pdf doc/vmgen.pdf
  985: 
  986: doc/gforth.dvi doc/gforth.fns:	$(GFORTH_TEXI)
  987: 		cd doc; $(TEXI2DVI) gforth.texi
  988: 
  989: doc/gforth.pdf:	$(GFORTH_TEXI)
  990: 		cd doc; $(TEXI2PDF) gforth.texi
  991: 
  992: doc/vmgen.dvi:	$(VMGEN_TEXI)
  993: 		cd doc; $(TEXI2DVI) vmgen.texi
  994: 
  995: doc/vmgen.pdf:	$(VMGEN_TEXI)
  996: 		cd doc; $(TEXI2PDF) vmgen.texi
  997: 
  998: doc/gforth.ps:	doc/gforth.dvi
  999: 		$(DVI2PS) doc/gforth.dvi -o $@
 1000: 
 1001: doc/vmgen.ps:	doc/vmgen.dvi
 1002: 		$(DVI2PS) doc/vmgen.dvi -o $@
 1003: 
 1004: info:		doc/gforth.info doc/vmgen.info
 1005: 
 1006: doc/gforth.info: $(GFORTH_TEXI)
 1007: 		cd doc; $(MAKEINFO) gforth.texi
 1008: 
 1009: doc/vmgen.info: $(VMGEN_TEXI)
 1010: 		cd doc; $(MAKEINFO) vmgen.texi
 1011: 
 1012: 
 1013: ### need makeinfo 4.2 to generate html with these rules
 1014: doc/gforth: $(GFORTH_TEXI)
 1015: 	cd doc; $(MAKEINFO) --html gforth.texi
 1016: 
 1017: doc/vmgen: $(VMGEN_TEXI)
 1018: 	cd doc; $(MAKEINFO) --html vmgen.texi
 1019: 
 1020: doc/gforth.txt:	$(GFORTH_TEXI)
 1021: 		-cd doc; $(MAKEINFO) --no-headers --no-split gforth.texi >gforth.txt
 1022: 
 1023: doc/vmgen.txt:	$(VMGEN_TEXI)
 1024: 		-cd doc; $(MAKEINFO) --no-headers --no-split vmgen.texi >vmgen.txt
 1025: 
 1026: doc:		gforth.fi info doc/gforth doc/vmgen doc/gforth.ps doc/vmgen.ps doc/gforth.txt doc/vmgen.txt TAGS
 1027: 
 1028: # For an explanation of the following Makefile rules, see node
 1029: # `Automatic Remaking' in GNU Autoconf documentation.
 1030: 
 1031: #Note: no target "$(srcdir)/configure", because that does not trigger 
 1032: #unless $(srcdir)!="."
 1033: configure: configure.in aclocal.m4
 1034: 	cd $(srcdir) && autoconf
 1035: 
 1036: aclocal.m4:	configure.in
 1037: 		aclocal
 1038: 
 1039: # autoheader might not change config.h.in, so touch a stamp file.
 1040: engine/config.h.in: stamp-h.in
 1041: stamp-h.in: configure.in aclocal.m4
 1042: 	cd $(srcdir) && autoheader
 1043: 	echo timestamp > $(srcdir)/stamp-h.in
 1044: 
 1045: engine/config.h: stamp-h
 1046: stamp-h: engine/config.h.in config.status stamp-h.in
 1047: 	./config.status
 1048: 
 1049: Makefile Makedist engine/Makefile gforthmi vmgen preforth machpc.fs doc/version.texi envos.fs build-ec:	Makefile.in Makedist.in engine/Makefile.in gforthmi.in vmgen.in preforth.in libforth.in machpc.fs.in doc/version.texi.in config.status configure.in envos.fs.in build-ec.in engine/libcc.h.in
 1050: 	./config.status
 1051: 
 1052: config.status: configure
 1053: 	./config.status --recheck
 1054: 
 1055: #create files for DOS, because DOS cannot do it itself
 1056: makefile.dos: mkdosmf.sed Makefile.in
 1057: 	sed -f mkdosmf.sed <Makefile.in >makefile.dos
 1058: 
 1059: engine/makefile.dos: mkdosmf.sed engine/Makefile.in
 1060: 	sed -f mkdosmf.sed <engine/Makefile.in >engine/makefile.dos
 1061: 
 1062: makefile.os2: mkos2mf.sed Makefile.in
 1063: 	sed -f mkos2mf.sed <Makefile.in >makefile.os2
 1064: 	echo '%.o:      %.c' >>makefile.os2
 1065: 	echo '          $$(GCC) $$(CFLAGS) $$(CPPFLAGS) -c $$<' >>makefile.os2
 1066: 
 1067: engine/makefile.os2: mkos2mf.sed engine/Makefile.in
 1068: 	sed -f mkos2mf.sed <engine/Makefile.in >engine/makefile.os2
 1069: 	echo '%.o:      %.c' >>engine/makefile.os2
 1070: 	echo '          $$(GCC) $$(CFLAGS) $$(CPPFLAGS) -c $$<' >>engine/makefile.os2

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