File:  [gforth] / gforth / Makefile.in
Revision 1.476: download - view: text, annotated - select for diffs
Thu Jun 21 23:28:00 2012 UTC (11 years, 9 months ago) by pazsan
Branches: MAIN
CVS tags: HEAD
Build process for Android improved

    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: 	mkdir.fs \
  241: 	libcc.fs \
  242: 	locals.fs \
  243: 	look.fs \
  244: 	mkdir.fs \
  245: 	prelude.fs \
  246: 	quotes.fs \
  247: 	search.fs \
  248: 	see.fs \
  249: 	see-ext.fs \
  250: 	simp-see.fs \
  251: 	source.fs \
  252: 	startup.fs \
  253: 	str-exec.fs \
  254: 	struct.fs \
  255: 	struct0x.fs \
  256: 	stuff.fs \
  257: 	tasker.fs \
  258: 	termsize.fs \
  259: 	utf-8.fs \
  260: 	vt100.fs \
  261: 	vt100key.fs \
  262: 	wordinfo.fs \
  263: 	arch/386/asm.fs arch/386/disasm.fs \
  264: 	arch/amd64/asm.fs arch/amd64/disasm.fs \
  265: 	arch/alpha/asm.fs arch/alpha/disasm.fs arch/alpha/testasm.fs\
  266: 	arch/arm/asm.fs arch/arm/disasm.fs \
  267: 	arch/arm/testdisasm.fs arch/arm/testdisasm.out arch/arm/Makefile \
  268: 	arch/mips/asm.fs arch/mips/disasm.fs arch/mips/insts.fs \
  269: 	arch/mips/testasm.fs arch/mips/testdisasm.fs \
  270: 	arch/power/asm.fs arch/power/disasm.fs arch/power/inst.fs \
  271: 	arch/lm32/asm.fs arch/lm32/testasm.fs
  272: 
  273: # execlude envos.fs into list of distributed sources
  274: GFORTH_FI_DIST_SRC = \
  275: 	$(GFORTH_FI_SRC1) \
  276: 	$(GFORTH_FI_SRC2)
  277: 
  278: GFORTH_FI_SRC = \
  279: 	$(GFORTH_FI_SRC1) \
  280: 	envos.fs \
  281: 	$(GFORTH_FI_SRC2)
  282: 
  283: LIBCC_SRC = cstr.fs unix/socket.fs unix/pthread.fs
  284: 
  285: LIBCC_DIST_SRC = libffi.fs fflib.fs $(LIBCC_SRC)
  286: 
  287: LIBCC_BUILD_SRC = @LIBCC_BUILD_SRC@ $(LIBCC_SRC)
  288: 
  289: 
  290: FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_DIST_SRC) $(EC_SRC) $(LIBCC_DIST_SRC) \
  291: 	ans-report.fs ansi.fs answords.fs \
  292: 	colorize.fs comp-i.fs complex.fs \
  293: 	depth-changes.fs dosekey.fs doskey.fs ds2texi.fs \
  294: 	envos.dos envos.os2 etags.fs fft.fs filedump.fs fi2c.fs \
  295: 	fsl-util.4th glosgen.fs gray.fs httpd.fs install-tags.fs \
  296: 	make-app.fs doc/makedoc.fs locate.fs more.fs onebench.fs \
  297: 	other.fs prims2x.fs prims2x0.6.2.fs proxy.fs random.fs \
  298: 	regexp.fs sokoban.fs string.fs table.fs tags.fs \
  299: 	tt.fs quotations.fs \
  300: 	unbuffer.fs wordsets.fs xwords.fs \
  301: 	test/tester.fs test/ttester.fs \
  302: 	test/coretest.fs test/postpone.fs test/dbltest.fs \
  303: 	test/string.fs test/float.fs test/search.fs test/gforth.fs \
  304: 	test/other.fs test/signals.fs test/checkans.fs \
  305: 	test/primtest.fs test/coreext.fs test/deferred.fs \
  306: 	test/coremore.fs test/gforth-nofast.fs test/libcc.fs \
  307: 	test/macros.fs \
  308: 	bubble.fs siev.fs matrix.fs fib.fs \
  309: 	oof.fs oofsampl.fs objects.fs objexamp.fs mini-oof.fs moof-exm.fs \
  310: 	moofglos.fs fixpath.fs \
  311: 	add.fs lib.fs oldlib.fs sieve.fs \
  312: 	endtry-iferror.fs recover-endtry.fs
  313: 
  314: COMPAT = compat/README \
  315: 	compat/anslocal.fs \
  316: 	compat/assert.fs \
  317: 	compat/control.fs \
  318: 	compat/defer.fs \
  319: 	compat/exception.fs \
  320: 	compat/execute-parsing.fs \
  321: 	compat/loops.fs \
  322: 	compat/macros.fs \
  323: 	compat/required.fs \
  324: 	compat/strcomp.fs \
  325: 	compat/struct.fs \
  326: 	compat/vocabulary.fs
  327: 
  328: GFORTH_TEXI =  doc/gforth.texi doc/version.texi
  329: 
  330: VMGEN_TEXI = doc/vmgen.texi doc/version.texi doc/fdl.texi
  331: 
  332: ALLSUBDIRS = engine
  333: 
  334: ARCHS =	\
  335: 	arch/generic/machine.h \
  336: 	arch/m68k/machine.h \
  337: 	arch/mips/machine.h \
  338: 	arch/mips/check_prim.c \
  339: 	arch/386/machine.h \
  340: 	arch/hppa/machine.h \
  341: 	arch/hppa/cache.c \
  342: 	arch/sparc/machine.h \
  343: 	arch/power/machine.h \
  344: 	arch/power/_sync_cache_range.c \
  345: 	arch/alpha/machine.h \
  346: 	arch/arm/machine.h \
  347: 	arch/arm/cacheflush0.c \
  348: 	arch/arm/cacheflush-linux.c \
  349: 	arch/ia64/machine.h \
  350: 	arch/ia64/flush_icache_block.c \
  351: 	arch/amd64/machine.h \
  352: 	arch/4stack/README \
  353: 	arch/4stack/asm.fs \
  354: 	arch/4stack/mach.fs \
  355: 	arch/4stack/prim.fs \
  356: 	arch/4stack/mach.sh \
  357: 	arch/4stack/relocate.fs \
  358: 	arch/misc/README \
  359: 	arch/misc/asm.fs \
  360: 	arch/misc/mach.fs \
  361: 	arch/misc/optcmove.fs \
  362: 	arch/misc/prim.fs \
  363: 	arch/misc/sim.fs \
  364: 	arch/misc/sokoban.fs \
  365: 	arch/misc/tt.fs \
  366: 	arch/6502/prim.fs \
  367: 	arch/6502/mach.fs \
  368: 	arch/shboom/asm.fs \
  369: 	arch/shboom/compiler.fs \
  370: 	arch/shboom/dis.fs \
  371: 	arch/shboom/mach.fs \
  372: 	arch/shboom/prim.fs \
  373: 	arch/shboom/dis2.fs \
  374: 	arch/shboom/sh.p \
  375: 	arch/shboom/doers.fs \
  376: 	arch/sharc/mach.fs \
  377: 	arch/sharc/machine.h \
  378: 	arch/sharc/compile.sharc \
  379: 	arch/sharc/systypes.h \
  380: 	arch/sharc/types.h \
  381: 	arch/sharc/g21k-3.3.4-bp1.diff \
  382: 	arch/r8c/asm.fs \
  383: 	arch/r8c/mach.fs \
  384: 	arch/r8c/errors.fs \
  385: 	arch/r8c/prim.fs \
  386: 	arch/r8c/asm-test.fs \
  387: 	arch/r8c/errors.fs \
  388: 	arch/r8c/lauflicht.fs \
  389: 	arch/r8c/tasker.fs \
  390: 	arch/r8c/terminal.fs \
  391: 	arch/sharc/unistd.h \
  392: 	arch/lm32/mach.fs \
  393: 	arch/lm32/mach.sh \
  394: 	arch/lm32/prim.fs \
  395: 	arch/lm32/Makefile \
  396: 	arch/lm32/testasm.disas-ok
  397: 
  398: #not included in distribution until distribution terms are included:
  399: ARCHS_NO_DIST = \
  400: 	arch/6502/asm.fs \
  401: 	arch/6502/cold.fs \
  402: 	arch/6502/softuart.fs \
  403: 	arch/6502/zero.fs \
  404: 	arch/8086/asm.fs \
  405: 	arch/8086/mach.fs \
  406: 	arch/8086/mach.sh \
  407: 	arch/8086/prim.fs \
  408: 	arch/avr/asm.fs \
  409: 	arch/c165/asm.fs \
  410: 	arch/c165/mach.fs \
  411: 	arch/c165/prim.fs \
  412: 	arch/h8/asm.fs \
  413: 	arch/r8c/tt.fs
  414: 
  415: VMGEN_EX = vmgen-ex/Makefile vmgen-ex/README vmgen-ex/disasm.c \
  416: 	vmgen-ex/engine.c vmgen-ex/fib.mini \
  417: 	vmgen-ex/mini-inst.vmg vmgen-ex/mini-super.vmg vmgen-ex/mini.h \
  418: 	vmgen-ex/mini.l vmgen-ex/mini.y vmgen-ex/peephole-blacklist \
  419: 	vmgen-ex/peephole.c vmgen-ex/profile.c vmgen-ex/seq2rule.awk \
  420: 	vmgen-ex/simple.mini vmgen-ex/stat.awk vmgen-ex/support.c \
  421: 	vmgen-ex/test.mini vmgen-ex/test.out
  422: 
  423: VMGEN_EX2 = $(VMGEN_EX:vmgen-ex/%=vmgen-ex2/%)
  424: 
  425: ENGINE_SOURCES = engine/Makefile.in engine/config.h.in \
  426: 	engine/engine.c engine/main.c \
  427: 	engine/io.c engine/support.c engine/signals.c engine/libcc.h.in \
  428: 	engine/profile.c engine/128bit.h \
  429: 	engine/getopt.c engine/getopt1.c engine/getopt.h engine/select.c \
  430: 	engine/ecvt.c engine/memcmp.c engine/rint.c \
  431: 	engine/strtol.c engine/strtoul.c \
  432: 	engine/ansidecl.h engine/memmove.c \
  433: 	engine/pow10.c engine/atanh.c engine/cleanalign.c \
  434: 	engine/strerror.c engine/strsignal.c engine/dblsub.c \
  435: 	engine/fnmatch.h engine/fnmatch.c \
  436: 	engine/makefile.dos engine/makefile.os2
  437: 
  438: SOURCES	= $(ENGINE_SOURCES) compat Makefile.in Makedist.in \
  439: 	gforthmi.in vmgen.in preforth.in libforth.in gforthker.in gfgen README.vmgen NEWS.vmgen \
  440: 	autogen.sh configure.in configure config.sub config.guess \
  441: 	elisp-comp missing stamp-h.in envos.fs.in \
  442: 	iss.sh install-sh INSTALL INSTALL.BINDIST NEWS README ToDo BUGS \
  443: 	BUILD-FROM-SCRATCH model \
  444: 	COPYING COPYING.LIB COPYING.DOC AUTHORS ChangeLog Benchres aclocal.m4 \
  445: 	doc/gforth.ds doc/gforth.1 doc/version.texi.in \
  446: 	doc/vmgen.texi doc/fdl.texi doc/gpl.texi \
  447: 	gforth.el \
  448: 	$(ARCHS) \
  449: 	INSTALL.DOS makefile.dos mkdosmf.sed config.bat \
  450: 	dosconf.h gforthmi.bat mkinstalldirs siteinit.fs \
  451: 	versions.bsh \
  452: 	configure.cmd mkos2mf.sed os2conf.h makefile.os2 \
  453: 	gforthmi.cmd glosgen.glo doc/glossaries.doc \
  454: 	$(INCLUDES) $(FORTH_SRC) $(COMPAT) $(VMGEN_EX) $(VMGEN_EX2) \
  455: 	timings.sc \
  456: 	test/coretest.out test/checkans.out test/gforth.out \
  457: 	cache*.vmg peeprules.vmg prim
  458: 
  459: RCS_FILES =  ToDo model high-level
  460: 
  461: ENGINES = gforth$(EXT) @NO_EC@ gforth-ditc$(EXT) gforth-itc$(EXT) $(PROFEXES)
  462: 
  463: ENGINES_FAST = @NO_EC@ gforth-fast$(OPT)$(EXT) #gforth-native$(OPT)$(EXT) 
  464: 
  465: GEN = $(ENGINES) $(ENGINES_FAST) @gforth_elc@
  466: 
  467: # things that need a working forth system to be generated
  468: FORTH_GEN_ENGINE=engine/prim.i engine/prim_lab.i engine/prim_names.i \
  469: 	engine/prim_superend.i engine/profile.i \
  470: 	engine/prim_num.i engine/prim_grp.i \
  471: 	engine/costs.i engine/super2.i
  472: FORTH_GEN_ENGINE_FAST= \
  473: 	engine/prim-fast.i engine/prim_lab-fast.i engine/prim_names-fast.i \
  474: 	engine/prim_superend-fast.i engine/profile-fast.i \
  475: 	engine/prim_num-fast.i engine/prim_grp-fast.i \
  476: 	engine/costs-fast.i engine/super2-fast.i
  477: FORTH_GEN_PRIMB = $(FORTH_GEN_ENGINE) kernel/aliases.fs kernel/prim.fs
  478: FORTH_GEN0 = prim.b $(FORTH_GEN_PRIMB)
  479: FORTH_GEN =  $(FORTH_GEN0) @KERNEL@ @NO_CROSS@ gforth.fi
  480: # this is used for antidependences,
  481: FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@ build-ec
  482: 
  483: #kernel dependencies
  484: KERN_DEPS = $(KERN_SRC) kernel/version.fs machpc.fs $(FORTH_GEN0) compat/strcomp.fs
  485: 
  486: #distributed documentation
  487: DOCDIST = doc/gforth.info doc/gforth.info-* doc/gforth.ps \
  488: 	  doc/vmgen.info doc/vmgen.ps
  489: 
  490: BKERNLS = kernl16b$(EC).fi kernl16l$(EC).fi \
  491: 	  kernl32b$(EC).fi kernl32l$(EC).fi \
  492: 	  kernl64b$(EC).fi kernl64l$(EC).fi
  493: 
  494: KERNLS = kernl16b$(EC).fi- kernl16l$(EC).fi- \
  495: 	 kernl32b$(EC).fi- kernl32l$(EC).fi- \
  496: 	 kernl64b$(EC).fi- kernl64l$(EC).fi-
  497: 
  498: # -------------        Make forth images
  499: GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) \
  500: 	doc/gforth.texi doc/gforth.dvi doc/gforth.ps \
  501: 	doc/vmgen.dvi doc/vmgen.ps \
  502: 	Makefile Makedist engine/Makefile configure
  503: 
  504: #standards.info recommends this:
  505: .SUFFIXES:
  506: .SUFFIXES: .c .o
  507: 
  508: all: kernel/version.fs more @NO_CROSS@ check
  509: 
  510: # use this dependency for phony targets just as mostlyclean,...
  511: FORCE: ;
  512: 
  513: #targets of failed commands should be deleted:
  514: .DELETE_ON_ERROR:
  515: 
  516: #this rule avoids remaking everything after minor changes in Makefile.in
  517: version:	Makefile.in configure.in
  518: 		if test -r $@ && test x'$(VERSION)' = x`cat $@` ; then true ; else echo $(VERSION) > $@ ; fi
  519: 
  520: # With dos we use normal dos echo
  521: # we cannot pipe the output to engine/version.h directly because
  522: # of the "/ and \" problem. Copying works because we use the
  523: # shell und file utilities.
  524: 
  525: kernel/version.fs:	version
  526: 	echo ": version-string s\" $(VERSION)\" ;" > kernel/version.fs
  527: 
  528: more:	$(ENGINES) $(FORTH_GEN) $(GEN) @build_libcc_named@
  529: 
  530: #from the gcc Makefile: 
  531: #"Deletion of files made during compilation.
  532: # There are four levels of this:
  533: #   `mostlyclean', `clean', `distclean' and `realclean'.
  534: # `mostlyclean' is useful while working on a particular type of machine.
  535: # It deletes most, but not all, of the files made by compilation.
  536: # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
  537: # `clean' deletes everything made by running `make all'.
  538: # `distclean' also deletes the files made by config.
  539: # `realclean' also deletes everything that could be regenerated automatically."
  540: 
  541: mostlyclean:	FORCE
  542: 		-$(RM) -rf engine/*.s gforth.fi *.fi~ *.fi- kernel/version.fs \
  543: 		*TAGS gforth~ \
  544: 		doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
  545: 		doc/gforth.aux doc/gforth.cp doc/gforth.cps \
  546: 		doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
  547: 		doc/gforth.pg \
  548: 		doc/gforth.toc doc/gforth.tp doc/gforth.vr html \
  549: 		gforth-$(VERSION).tar.gz
  550: 
  551: # Just the stuff needed to rebuild the documentation nac03feb1999
  552: docclean:	FORCE
  553: 		-$(RM) -rf doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
  554: 		doc/gforth.aux doc/gforth.cp doc/gforth.cps \
  555: 		doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
  556: 		doc/gforth.pg \
  557: 		doc/gforth.toc doc/gforth.tp doc/gforth.vr html
  558: 
  559: clean:		mostlyclean
  560: 	-$(RM) -rf $(GEN) *.o engine/*.o arch/*/*.o version \
  561: 	gforth-itc-noll$(EXT)  engine/gforth-itc-noll$(EXT)  \
  562: 	gforth-ditc-noll$(EXT) engine/gforth-ditc-noll$(EXT) \
  563: 	gforth-prof-noll$(EXT) engine/gforth-prof-noll$(EXT) \
  564: 	engine/prim-s.i
  565: 	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
  566: 
  567: distclean:	clean
  568: 		-$(RM) -rf config.cache config.log config.status \
  569: 		engine/config.h Makefile Makedist engine/Makefile \
  570: 		stamp-h engine/stamp-h \
  571: 		doc/version.texi gforthmi vmgen preforth \
  572: 		prim-fast.b $(FORTH_GEN_ENGINE_FAST)
  573: 
  574: #realclean is useless, but dangerous, so it's commented out
  575: realclean:	distclean
  576: 		-$(RM) -rf $(GEN_PRECIOUS) `cat .cvsignore`
  577: 
  578: #mostlyclean, but also remove some of the stuff that is distributed
  579: virtualclean:	mostlyclean
  580: 		-$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \
  581: 		gforth-$(VERSION).tar.gz config.cache *~ */*~
  582: 
  583: maintainer-clean: realclean
  584: 
  585: #Some makes (Ultrix, SunOS, IRIX) are so broken, they cannot read the
  586: #Makefile if it contains our dist rules.  Therefore we have put these
  587: #rules in Makedist (you can use them with GNU make on these systems).
  588: 
  589: dist:		Makedist FORCE
  590: 		$(MAKE) -f Makedist d$@
  591: 
  592: dosdist:	Makedist FORCE
  593: 		$(MAKE) -f Makedist d$@
  594: 
  595: srcdist:	Makedist FORCE
  596: 		$(MAKE) -f Makedist d$@
  597: 
  598: srconlydist:	Makedist FORCE
  599: 		$(MAKE) -f Makedist d$@
  600: 
  601: docdist:	Makedist FORCE
  602: 		$(MAKE) -f Makedist d$@
  603: 
  604: htmldist:	Makedist FORCE
  605: 		$(MAKE) -f Makedist d$@
  606: 
  607: bindist:	Makedist FORCE
  608: 		$(MAKE) -f Makedist d$@
  609: 
  610: binonlydist:	Makedist FORCE
  611: 		$(MAKE) -f Makedist d$@
  612: 
  613: debdist:	Makedist FORCE
  614: 		$(MAKE) -f Makedist d$@
  615: 
  616: #HPUX make breaks the cycle differently when the dates are equal, so
  617: # touch some of the files if it acts up
  618: hpux-workaround:
  619: 	touch $(FORTH_GEN_PRIMB)
  620: 
  621: #strip gforth, because the debugging stuff is hardly useful once
  622: # gforth manages to execute more than a few primitives.
  623: 
  624: #install does not depend on gforth.info, because that would require
  625: #supplying a lot of files that can be easily generated (only info is
  626: #hard to generate).
  627: #we rebuild gforth.fi, because it contains some path names.
  628: #we delete $build/gforth.fi and $build/install.TAGS after installation because of ownership.
  629: install:	gforth$(EXT) $(FORTH_SRC) $(kernel_fi) gforthmi vmgen doc/gforth.1 prim install.TAGS installdirs @NO_CROSS@ gforth.fi
  630: 		$(NORMAL_INSTALL)
  631: 		touch $(DESTDIR)$(siteforthdir)/siteinit.fs
  632: 		-$(RM) $(DESTDIR)$(bindir)/gforth$(EXT) $(DESTDIR)$(bindir)/gforth-$(VERSION)$(EXT) $(DESTDIR)$(bindir)/gforthmi $(DESTDIR)$(bindir)/vmgen
  633: 		-$(RM) $(DESTDIR)$(bindir)/gforth-fast$(EXT) $(DESTDIR)$(bindir)/gforth-fast-$(VERSION)$(EXT)
  634: 		-$(RM) $(DESTDIR)$(bindir)/gforth-itc$(EXT) $(DESTDIR)$(bindir)/gforth-itc-$(VERSION)$(EXT)
  635: 		-$(RM) $(DESTDIR)$(bindir)/gforth-ditc$(EXT) $(DESTDIR)$(bindir)/gforth-ditc-$(VERSION)$(EXT)
  636: 		$(INSTALL_PROGRAM) gforth$(EXT) $(DESTDIR)$(bindir)/gforth-$(VERSION)$(EXT)
  637: 		-$(MASSAGE_EXE) $(DESTDIR)$(bindir)/gforth-$(VERSION)$(EXT)
  638: 		(cd $(DESTDIR)$(bindir) && $(LN_S) gforth-$(VERSION)$(EXT) gforth$(EXT))
  639: 		$(INSTALL_PROGRAM) gforth-fast$(EXT) $(DESTDIR)$(bindir)/gforth-fast-$(VERSION)$(EXT)
  640: 		-$(MASSAGE_EXE) $(DESTDIR)$(bindir)/gforth-fast-$(VERSION)$(EXT)
  641: 		(cd $(DESTDIR)$(bindir) && $(LN_S) gforth-fast-$(VERSION)$(EXT) gforth-fast$(EXT))
  642: 		$(INSTALL_PROGRAM) gforth-itc$(EXT) $(DESTDIR)$(bindir)/gforth-itc-$(VERSION)$(EXT)
  643: 		(cd $(DESTDIR)$(bindir) && $(LN_S) gforth-itc-$(VERSION)$(EXT) gforth-itc$(EXT))
  644: 		$(INSTALL_PROGRAM) gforth-ditc$(EXT) $(DESTDIR)$(bindir)/gforth-ditc-$(VERSION)$(EXT)
  645: 		(cd $(DESTDIR)$(bindir) && $(LN_S) gforth-ditc-$(VERSION)$(EXT) gforth-ditc$(EXT))
  646: 		$(INSTALL_SCRIPT) gforthmi $(DESTDIR)$(bindir)/gforthmi-$(VERSION)
  647: 		$(INSTALL_SCRIPT) vmgen $(DESTDIR)$(bindir)/vmgen-$(VERSION)
  648: 		(cd $(DESTDIR)$(bindir) && $(LN_S) gforthmi-$(VERSION) gforthmi)
  649: 		(cd $(DESTDIR)$(bindir) && $(LN_S) vmgen-$(VERSION) vmgen)
  650: 		-$(INSTALL_DATA) $(srcdir)/doc/gforth.1 $(DESTDIR)$(man1dir)
  651: 		-for i in $(srcdir)/doc/gforth.info* $(srcdir)/doc/vmgen.info*; do $(INSTALL_DATA) $$i $(DESTDIR)$(infodir); done
  652: 		for i in $(FORTH_SRC) $(COMPAT) envos.fs prim; do \
  653: 			$(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(datadir)/gforth/$(VERSION)/$$i; \
  654: 		done
  655: 		$(INSTALL_DATA) $(kernel_fi) $(DESTDIR)$(libdir)/gforth$(ARCH)/$(VERSION)
  656: 		@if test -d "$(DESTDIR)$(emacssitelispdir)"; then \
  657: 			for i in gforth.el @gforth_elc@; do \
  658: 				$(INSTALL_DATA) $$i $(DESTDIR)$(emacssitelispdir); \
  659: 			done; \
  660: 		else \
  661: 			echo '>>>>>Please install gforth.{el,elc} in your .../emacs/site-lisp directory'; \
  662: 		fi
  663: 		-$(RM) gforth.fi
  664: 		@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)
  665: 		@NO_CROSS@$(INSTALL_DATA) gforth.fi $(DESTDIR)$(libdir)/gforth$(ARCH)/$(VERSION)
  666: 		$(INSTALL_DATA) install.TAGS $(DESTDIR)$(datadir)/gforth/$(VERSION)/TAGS
  667: 		$(RM) install.TAGS @NO_CROSS@gforth.fi
  668: 		$(INSTALL_DATA) include/gforth/$(VERSION)/* $(DESTDIR)$(includedir)/gforth/$(VERSION)
  669: 		if test -n "$(LIBTOOL)"; then for i in $(LIBCC_BUILD_SRC); do \
  670: 		   $(LIBTOOL) --silent --mode=install $(INSTALL) lib/gforth$(ARCH)/$(VERSION)/libcc-named/`basename $$i .fs`.la $(DESTDIR)$(libccdir)`basename $$i .fs`.la; \
  671: 		done; fi
  672: 		$(POST_INSTALL)
  673: 		$(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gforth.info
  674: 		$(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/vmgen.info
  675: 
  676: install-strip:	install
  677: 
  678: installdirs:	mkinstalldirs
  679: 		$(NORMAL_INSTALL)
  680: 		for i in $(bindir) $(man1dir) $(infodir) $(libdir)/gforth$(ARCH)/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(siteforthdir) $(includedir)/gforth/$(VERSION) $(libccdir); do \
  681: 			$(srcdir)/mkinstalldirs $(DESTDIR)$$i; \
  682: 		done
  683: 		#
  684: 		for i in $(INSTALLDIRS); do \
  685: 			$(srcdir)/mkinstalldirs $(DESTDIR)$(datadir)/gforth/$(VERSION)/$$i; \
  686: 		done
  687: 
  688: #deinstall all files specific to this version of gforth
  689: #to uninstall version foo, type `make uninstall VERSION=foo'
  690: uninstall:	FORCE
  691: 		$(NORMAL_UNINSTALL)
  692: 		-$(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)
  693: 		@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"
  694: 
  695: build-libcc-named: $(LIBCC_BUILD_SRC) $(FORTH_GEN) $(GEN) FORCE
  696: 		$(RMTREE) lib/gforth$(ARCH)/$(VERSION)/libcc-named/
  697: 		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
  698: 
  699: check:		gforths	gforth.fi 
  700: 		$(MAKE) checkone check-nofast ENGINE="./gforth$(EXT) --no-dynamic" >/dev/null 2>&1
  701: 		$(MAKE) checkone check-nofast ENGINE="./gforth-itc$(EXT)" >/dev/null 2>&1
  702: 		$(MAKE) checkone check-nofast ENGINE="./gforth-ditc$(EXT)" >/dev/null 2>&1
  703: 		$(MAKE) checkone ENGINE="./gforth-fast$(EXT) --no-dynamic" >/dev/null 2>&1
  704: 		$(MAKE) checkone check-nofast ENGINE="./gforth$(EXT)" >/dev/null 2>&1
  705: 		$(MAKE) checkone ENGINE="./gforth-fast$(EXT)" >/dev/null 2>&1
  706: 		@echo "*** Check successful ***"
  707: 		./gforth-fast$(EXT) --diag -e bye
  708: 
  709: checkone test: gforth.fi engine/prim-s.i
  710: 		$(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
  711: 		$(FORTH) test/other.fs -e bye
  712: 		$(FORTHS) test/signals.fs -e bye
  713: 		$(FORTHS) test/coremore.fs test/gforth.fs test/macros.fs -e bye 2>&1 | tr -d '\015' | diff -c - $(srcdir)/test/gforth.out
  714: 		$(FORTH) code.fs test/checkans.fs -e bye | tr -d '\015' | diff -c - $(srcdir)/test/checkans.out
  715: 		$(FORTH) prims2x.fs -e \
  716: 		  "c-flag on s\" prim.i\" out-filename 2! s\" $(srcdir)/prim.b\" ' output-c ' output-c-combined process-file bye"| \
  717: 		  tr -d '\015' | grep -v '^#line '|diff -c - engine/prim-s.i
  718: 
  719: check-nofast: gforth.fi
  720: 		$(FORTHS) test/gforth-nofast.fs -e bye
  721: 
  722: test/primtest.fi: test/primtest.fs mach32l.fs cross.fs
  723: 		$(FORTHB) -e 's" mach32l.fs"' $(srcdir)/test/primtest.fs -e "save-cross $@ $(bindir)/gforth-$(VERSION) bye"
  724: 
  725: primtest:	gforth gforth-native test/primtest.fi FORCE
  726: 		(echo rs|ENVVAR=bla ./gforth -i test/primtest.fi) && (echo rs|ENVVAR=bla ./gforth-native -i test/primtest.fi); echo $$?
  727: 
  728: bench:		gforth-fast$(EXT) gforth.fi
  729: 		@echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
  730: 		time $(FORTH_FAST) siev.fs -e "main bye"
  731: 		time $(FORTH_FAST) bubble.fs -e "main bye"
  732: 		time $(FORTH_FAST) matrix.fs -e "main bye"
  733: 		time $(FORTH_FAST) fib.fs -e "main bye"
  734: 
  735: onebench one-bench:
  736: 	$(FORTH_FAST) onebench.fs
  737: 
  738: all-bench allbench:
  739: 	./gforth-fast --dynamic onebench.fs
  740: 	./gforth-fast --no-dynamic onebench.fs
  741: 	./gforth --dynamic onebench.fs
  742: 	./gforth --no-dynamic onebench.fs
  743: 	./gforth-itc onebench.fs
  744: 	./gforth-ditc onebench.fs
  745: 
  746: # -------------	Make forth images
  747: 
  748: # How to make new images:
  749: # 1. Produce an image called kernlXYZ.fi-
  750: #    the original kernel.fi is not touched because it's needed for creation
  751: # 2. copy old kernlXYZ.fi to kernlXYZ.fi~
  752: #    that's a backup copy in case the new kernels don't work
  753: # 3. copy new kernels to kernlXYZ.fi
  754: #    these are the ones we want to use now
  755: 
  756: kernl16l$(EC).fi-:	$(KERN_DEPS) mach16l.fs
  757: 		$(PREFORTH) -e 's" mach16l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16l$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
  758: 
  759: kernl16b$(EC).fi-:	$(KERN_DEPS) mach16b.fs
  760: 		$(PREFORTH) -e 's" mach16b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16b$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
  761: 
  762: kernl32l$(EC).fi-:	$(KERN_DEPS) mach32l.fs
  763: 		$(PREFORTH) -e 's" mach32l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32l$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
  764: 
  765: kernl32b$(EC).fi-:	$(KERN_DEPS) mach32b.fs
  766: 		$(PREFORTH) -e 's" mach32b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32b$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
  767: 
  768: kernl64l$(EC).fi-:	$(KERN_DEPS) mach64l.fs
  769: 		$(PREFORTH) -e 's" mach64l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64l$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
  770: 
  771: kernl64b$(EC).fi-:	$(KERN_DEPS) mach64b.fs
  772: 		$(PREFORTH) -e 's" mach64b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64b$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
  773: 
  774: #Solaris make does not like that:
  775: @GNUMAKE@kernl-%.fi:	arch/%/mach.fs arch/%/prim.fs arch/%/asm.fs $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
  776: @GNUMAKE@		$(PREFORTH) -e 's" $<"' $(srcdir)/kernel/main.fs -e "save-cross $@- $(bindir)/gforth-$(VERSION) bye"
  777: @GNUMAKE@		if [ -f `echo $< | sed s/fs/sh/` ]; \
  778: @GNUMAKE@		then sh `echo $< | sed s/fs/sh/` $@; \
  779: @GNUMAKE@		else $(CP) $@- $@; \
  780: @GNUMAKE@		fi
  781: 
  782: #SunOS make does not like that
  783: #arch/%/mach.fs:	arch/%/prim.fs arch/%/asm.fs
  784: 
  785: kernl16b$(EC).fi:	$(KERNLS)
  786: 		-$(CP) kernl16b$(EC).fi kernl16b$(EC).fi~
  787: 		-$(CP) kernl16b$(EC).fi- kernl16b$(EC).fi
  788: 
  789: kernl16l$(EC).fi:	$(KERNLS)
  790: 		-$(CP) kernl16l$(EC).fi kernl16l$(EC).fi~
  791: 		-$(CP) kernl16l$(EC).fi- kernl16l$(EC).fi
  792: 
  793: kernl32b$(EC).fi:	$(KERNLS)
  794: 		-$(CP) kernl32b$(EC).fi kernl32b$(EC).fi~
  795: 		-$(CP) kernl32b$(EC).fi- kernl32b$(EC).fi
  796: 
  797: kernl32l$(EC).fi:	$(KERNLS)
  798: 		-$(CP) kernl32l$(EC).fi kernl32l$(EC).fi~
  799: 		-$(CP) kernl32l$(EC).fi- kernl32l$(EC).fi
  800: 
  801: kernl64b$(EC).fi:	$(KERNLS)
  802: 		-$(CP) kernl64b$(EC).fi kernl64b$(EC).fi~
  803: 		-$(CP) kernl64b$(EC).fi- kernl64b$(EC).fi
  804: 
  805: kernl64l$(EC).fi:	$(KERNLS)
  806: 		-$(CP) kernl64l$(EC).fi kernl64l$(EC).fi~
  807: 		-$(CP) kernl64l$(EC).fi- kernl64l$(EC).fi
  808: 
  809: #kernl%.fi:	kernl%.fi- $(KERNLS)
  810: #		-$(CP) $@ $@~
  811: #		-$(CP) $< $@
  812: 
  813: gforth.fi:	$(kernel_fi) gforthmi gforth-ditc$(EXT) $(GFORTH_FI_SRC) comp-i.fs
  814: 		@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)
  815: 
  816: # -------------	Make c-engine
  817: 
  818: prim.b:		prim cache0.vmg
  819: 		(cd $(srcdir) && $(M4) -Dcondbranch_opt=0 prim) >$@
  820: 		sleep 1 #should make hpux-workaround unnecessary
  821: 
  822: prim-fast.b:	prim cache-fast$(STACK_CACHE_DEFAULT_FAST).vmg cache-regs$(STACK_CACHE_REGS).vmg peeprules.vmg Makefile
  823: 		(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) >$@
  824: 		sleep 1 #should make hpux-workaround unnecessary
  825: 
  826: $(FORTH_GEN_ENGINE_FAST): prim-fast.b prims2x.fs
  827: 		GFORTH="$(PREFORTH)" $(srcdir)/gfgen -fast
  828: 
  829: $(FORTH_GEN_ENGINE): prim.b prims2x.fs
  830: 		GFORTH="$(PREFORTH)" $(srcdir)/gfgen
  831: 
  832: engine/prim-s.i: engine/prim.i
  833: 	grep -v '^#line ' $(srcdir)/engine/prim.i >$@
  834: 
  835: kernel/aliases.fs:	prim.b prims2x.fs kernel/aliases0.fs
  836: 		$(CP) kernel/aliases0.fs $@-
  837: 		$(PREFORTH) prims2x.fs -e "forth-flag on s\" prim.b\" ' output-alias ' noop process-file bye" >>$@-
  838: 		$(CP) $@- $@
  839: 		$(RM) $@-
  840: 
  841: kernel/prim.fs:	prim.b prims2x.fs kernel/prim0.fs
  842: 		$(CP) kernel/prim0.fs kernel/prim.fs-
  843: 		$(PREFORTH) prims2x.fs -e "forth-flag on s\" prim.b\" ' output-forth ' output-forth-combined process-file bye" >>$@-
  844: 		$(CP) $@- $@
  845: 		$(RM) $@-
  846: 
  847: 
  848: OPTS = @OPTS@
  849: 
  850: MAKELINE-ll-reg   = OPT=-ll-reg OPTDEFINES="-DFORCE_LL -DFORCE_REG" OPTOBJECTS=
  851: MAKELINE-noll-reg = OPT=-noll-reg OPTDEFINES=-DFORCE_REG OPTOBJECTS=dblsub.o
  852: MAKELINE-ll       = OPT=-ll OPTDEFINES=-DFORCE_LL OPTOBJECTS=
  853: MAKELINE-noll     = OPT=-noll OPTDEFINES= OPTOBJECTS=dblsub.o
  854: 
  855: gforth$(OPT)$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE) engine/config.h @kernel_anti_dependence@
  856: 	if test -z "$(OPT)"; then \
  857: 		for i in $(OPTS); do $(MAKE) optgforth OPT=$$i && $(CP) gforth$${i}$(EXT) $@ && break; done; \
  858: 	else \
  859: 		( cd engine && $(MAKE) $@ ) && \
  860: 		$(CP) engine/$@ $@ && \
  861: 		$(MASSAGE_EXE) $@; \
  862: 		@GFORTH_EXE@; \
  863: 		@NO_CROSS@ $(MAKE) checkone check-nofast ENGINE=./engine/$@; \
  864: 	fi
  865: 
  866: optgforth:
  867: 	$(MAKE) gforth$(OPT)$(EXT) $(MAKELINE$(OPT))
  868: 
  869: gforth-fast$(OPT)$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE_FAST) engine/config.h
  870: 	if test -z "$(OPT)"; then \
  871: 		for i in $(OPTS); do $(MAKE) optgforth-fast OPT=$$i && $(CP) gforth-fast$${i}$(EXT) $@ && break; done; \
  872: 	else \
  873: 		( cd engine && $(MAKE) $@ ) && \
  874: 		$(CP) engine/$@ $@ && \
  875: 		$(MASSAGE_EXE) $@; \
  876: 		@GFORTHFAST_EXE@; \
  877: 		@NO_CROSS@ $(MAKE) checkone ENGINE=./engine/$@; \
  878: 	fi
  879: 
  880: optgforth-fast:
  881: 	$(MAKE) gforth-fast$(OPT)$(EXT) $(MAKELINE$(OPT))
  882: 
  883: gforth-native$(OPT)$(EXT):	engines-fast
  884: 		$(CP) engine/$@ $@
  885: 		-$(MASSAGE_EXE) $@
  886: #@GFORTHX_EXE@
  887: 
  888: gforth-itc$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE) engine/Makefile engine/config.h
  889: 		cd engine && $(MAKE) gforth-itc-noll$(EXT) $(MAKELINE-noll)
  890: 		$(CP) engine/gforth-itc-noll$(EXT) $@
  891: 		@GFORTHITC_EXE@
  892: 
  893: gforth-ditc$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE) engine/Makefile engine/config.h
  894: 		cd engine && $(MAKE) gforth-ditc-noll$(EXT) $(MAKELINE-noll)
  895: 		$(CP) engine/gforth-ditc-noll$(EXT) $@
  896: 		@GFORTHDITC_EXE@
  897: 
  898: gforth-prof$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE) engine/Makefile engine/config.h
  899: 		cd engine && $(MAKE) gforth-prof-noll$(EXT) $(MAKELINE-noll)
  900: 		$(CP) engine/gforth-prof-noll$(EXT) $@
  901: 
  902: gforths: $(ENGINES) $(ENGINES_FAST)
  903: 
  904: # ------------- additional C primitives
  905: 
  906: .SUFFIXES:	.c .pri
  907: 
  908: .pri.c:		$< prim2cl.fs
  909: 		$(FORTHK) prim2cl.fs -e "file $< altogether bye" >$@
  910: 
  911: .c.so:		$<
  912: 		$(GCC) -shared $(CFLAGS) $(CPPFLAGS) $< -o $@
  913: 
  914: # -------------	Make Documentation
  915: 
  916: #TAGS is a GNU standard target
  917: TAGS:		gforth.TAGS
  918: 		$(CP) gforth.TAGS $@
  919: 
  920: tags:		gforth.tags
  921: 		$(CP) gforth.tags $@
  922: 
  923: install.TAGS:	TAGS install-tags.fs
  924: 		sed 's;^\$(srcdir)/;;' TAGS|$(PREFORTH) -e 's" '$(datadir)/gforth/$(VERSION)/'"' $(srcdir)/install-tags.fs -e bye >install.TAGS
  925: 
  926: gforth.TAGS:	@kernel_fi@ gforth$(EXT) $(GFORTH_FI_SRC) prim.TAGS kernel.TAGS
  927: 		$(FORTHK) etags.fs except.fs startup.fs -e bye
  928: 		cat TAGS prim.TAGS kernel.TAGS >gforth.TAGS
  929: 		rm TAGS
  930: 
  931: gforth.tags:	@kernel_fi@ gforth$(EXT) $(GFORTH_FI_SRC) prim.tags kernel.tags
  932: 		$(FORTHK) tags.fs except.fs startup.fs -e bye
  933: 		cat tags prim.tags kernel.tags >gforth.tags
  934: 		rm tags
  935: 
  936: prim.TAGS: 	prim.b prims2x.fs
  937: 		$(PREFORTH) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-tag dup process-file bye"|sed 's#^./prim#prim#' >$@-
  938: 		$(CP) $@- $@
  939: 		$(RM) $@-
  940: 
  941: prim.tags: 	prim.b prims2x.fs
  942: 		#echo '2c\' >prim.TAGS.sed
  943: 		#echo $(srcdir)/prim >>prim.TAGS.sed
  944: 		#$(PREFORTH) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-tag dup process-file bye" | sed -f prim.TAGS.sed >$@-
  945: 		$(PREFORTH) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-vi-tag dup process-file bye" >$@-
  946: 		$(CP) $@- $@
  947: 		$(RM) $@-
  948: 
  949: kernel.TAGS:
  950: 		$(RM) kernl16l$(EC).fi-; $(MAKE) @kernel_fi@
  951: 
  952: kernel.tags:
  953: 		$(RM) kernl16l$(EC).fi-; $(MAKE) @kernel_fi@
  954: 
  955: #elc files
  956: gforth.elc:	gforth.el
  957: 		-$(EMACS) -batch -f batch-byte-compile gforth.el
  958: 
  959: #Documentation
  960: 
  961: doc/doc.fd:	doc/makedoc.fs $(GFORTH_FI_SRC) code.fs objects.fs oof.fs moofglos.fs
  962: 		$(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
  963: 
  964: doc/crossdoc.fd:	$(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
  965: 		$(FORTHK) -e 's" mach32l.fs"' kernel/main.fs -e bye
  966: 
  967: doc/gforth.texi: doc/gforth.ds prim.b ds2texi.fs prims2x.fs \
  968: 		doc/doc.fd doc/crossdoc.fd
  969: 		$(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" >$@-
  970: 		$(CP) $@- $@
  971: 		$(RM) $@-
  972: 
  973: checkdoc:	doc/gforth.ds prim.b ds2texi.fs prims2x.fs doc/doc.fd doc/crossdoc.fd answords.fs doc/gforth.texi
  974: 		$(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
  975: 		-grep unknown doc/gforth.texi
  976: 		-grep doc- doc/gforth.texi| grep -v '^@c'
  977: 
  978: dvi:		doc/gforth.dvi doc/vmgen.dvi
  979: 
  980: pdf:		doc/gforth.pdf doc/vmgen.pdf
  981: 
  982: doc/gforth.dvi doc/gforth.fns:	$(GFORTH_TEXI)
  983: 		cd doc; $(TEXI2DVI) gforth.texi
  984: 
  985: doc/gforth.pdf:	$(GFORTH_TEXI)
  986: 		cd doc; $(TEXI2PDF) gforth.texi
  987: 
  988: doc/vmgen.dvi:	$(VMGEN_TEXI)
  989: 		cd doc; $(TEXI2DVI) vmgen.texi
  990: 
  991: doc/vmgen.pdf:	$(VMGEN_TEXI)
  992: 		cd doc; $(TEXI2PDF) vmgen.texi
  993: 
  994: doc/gforth.ps:	doc/gforth.dvi
  995: 		$(DVI2PS) doc/gforth.dvi -o $@
  996: 
  997: doc/vmgen.ps:	doc/vmgen.dvi
  998: 		$(DVI2PS) doc/vmgen.dvi -o $@
  999: 
 1000: info:		doc/gforth.info doc/vmgen.info
 1001: 
 1002: doc/gforth.info: $(GFORTH_TEXI)
 1003: 		cd doc; $(MAKEINFO) gforth.texi
 1004: 
 1005: doc/vmgen.info: $(VMGEN_TEXI)
 1006: 		cd doc; $(MAKEINFO) vmgen.texi
 1007: 
 1008: 
 1009: ### need makeinfo 4.2 to generate html with these rules
 1010: doc/gforth: $(GFORTH_TEXI)
 1011: 	cd doc; $(MAKEINFO) --html gforth.texi
 1012: 
 1013: doc/vmgen: $(VMGEN_TEXI)
 1014: 	cd doc; $(MAKEINFO) --html vmgen.texi
 1015: 
 1016: doc/gforth.txt:	$(GFORTH_TEXI)
 1017: 		-cd doc; $(MAKEINFO) --no-headers --no-split gforth.texi >gforth.txt
 1018: 
 1019: doc/vmgen.txt:	$(VMGEN_TEXI)
 1020: 		-cd doc; $(MAKEINFO) --no-headers --no-split vmgen.texi >vmgen.txt
 1021: 
 1022: doc:		gforth.fi info doc/gforth doc/vmgen doc/gforth.ps doc/vmgen.ps doc/gforth.txt doc/vmgen.txt TAGS
 1023: 
 1024: # For an explanation of the following Makefile rules, see node
 1025: # `Automatic Remaking' in GNU Autoconf documentation.
 1026: 
 1027: #Note: no target "$(srcdir)/configure", because that does not trigger 
 1028: #unless $(srcdir)!="."
 1029: configure: configure.in aclocal.m4
 1030: 	cd $(srcdir) && autoconf
 1031: 
 1032: aclocal.m4:	configure.in
 1033: 		aclocal
 1034: 
 1035: # autoheader might not change config.h.in, so touch a stamp file.
 1036: engine/config.h.in: stamp-h.in
 1037: stamp-h.in: configure.in aclocal.m4
 1038: 	cd $(srcdir) && autoheader
 1039: 	echo timestamp > $(srcdir)/stamp-h.in
 1040: 
 1041: engine/config.h: stamp-h
 1042: stamp-h: engine/config.h.in config.status stamp-h.in
 1043: 	./config.status
 1044: 
 1045: 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
 1046: 	./config.status
 1047: 
 1048: config.status: configure
 1049: 	./config.status --recheck
 1050: 
 1051: #create files for DOS, because DOS cannot do it itself
 1052: makefile.dos: mkdosmf.sed Makefile.in
 1053: 	sed -f mkdosmf.sed <Makefile.in >makefile.dos
 1054: 
 1055: engine/makefile.dos: mkdosmf.sed engine/Makefile.in
 1056: 	sed -f mkdosmf.sed <engine/Makefile.in >engine/makefile.dos
 1057: 
 1058: makefile.os2: mkos2mf.sed Makefile.in
 1059: 	sed -f mkos2mf.sed <Makefile.in >makefile.os2
 1060: 	echo '%.o:      %.c' >>makefile.os2
 1061: 	echo '          $$(GCC) $$(CFLAGS) $$(CPPFLAGS) -c $$<' >>makefile.os2
 1062: 
 1063: engine/makefile.os2: mkos2mf.sed engine/Makefile.in
 1064: 	sed -f mkos2mf.sed <engine/Makefile.in >engine/makefile.os2
 1065: 	echo '%.o:      %.c' >>engine/makefile.os2
 1066: 	echo '          $$(GCC) $$(CFLAGS) $$(CPPFLAGS) -c $$<' >>engine/makefile.os2

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