File:  [gforth] / gforth / Makefile.in
Revision 1.89: download - view: text, annotated - select for diffs
Tue Mar 11 16:00:36 1997 UTC (27 years ago) by anton
Branches: MAIN
CVS tags: HEAD
added primitive K
the Makefile now works with Digital Unix make
renamed the gforth-makeimage variable GFORTH into GFORTHD
fixed bug in comp-image (can now generate data-relocatable images).
gforth-makeimage uses a new option --no-offset-im to avoid differences
	from the command line
Documentation changes
fixed another bug involving relocatablility of code addresses.
my_alloc now works on machines without MAP_FILE and MAP_PRIVATE

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

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