File:  [gforth] / gforth / Makefile.in
Revision 1.117: download - view: text, annotated - select for diffs
Tue Jul 28 21:04:01 1998 UTC (25 years, 8 months ago) by anton
Branches: MAIN
CVS tags: HEAD
added test for MIPS link flag -d to configure.in
some small bugfixes

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

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