File:  [gforth] / gforth / Makefile.in
Revision 1.77: download - view: text, annotated - select for diffs
Mon Dec 23 15:07:44 1996 UTC (27 years, 4 months ago) by anton
Branches: MAIN
CVS tags: HEAD
bumped version number to 0.2.9.
added --offset-image option, comp-image.fs, and changed Makefile to
make a relocatable image gforth.fi from two nonrelocatable images.
added UNDER+.

    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=2
   29: VERSION_RELEASE=9
   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: INSTALL_DIR = $(srcdir)/install-sh -d
   41: LN_S	= @LN_S@
   42: GCC	= @CC@
   43: CC	= $(GCC)
   44: PATHSEP = @PATHSEP@
   45: FORTHPATH = $(libdir)/gforth/site-forth$(PATHSEP)$(datadir)/gforth/site-forth$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)$(PATHSEP).
   46: FORTHSIZES = @FORTHSIZES@
   47: FORTH	= ./gforth -p $(FORTHPATH)$(PATHSEP)$(srcdir)
   48: FORTHK	= ./gforth -p .$(PATHSEP)$(srcdir) -i ./kernel.fi
   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: 	add.fs \
   89: 	aliases.fs \
   90: 	cross.fs \
   91: 	errore.fs \
   92: 	extend.fs \
   93: 	kernel.fs \
   94: 	main.fs \
   95: 	search-order.fs \
   96: 	special.fs \
   97: 	tools.fs \
   98: 	toolsext.fs \
   99: 	vars.fs
  100: 
  101: GFORTH_FI_SRC = \
  102: 	assert.fs \
  103: 	blockedit.fb \
  104: 	blocks.fs \
  105: 	bufio.fs \
  106: 	debug.fs \
  107: 	debugging.fs \
  108: 	dumpimage.fs \
  109: 	environ.fs \
  110: 	float.fs \
  111: 	glocals.fs \
  112: 	hash.fs \
  113: 	history.fs \
  114: 	intcomp.fs \
  115: 	look.fs \
  116: 	search-order.fs \
  117: 	see.fs \
  118: 	source.fs \
  119: 	startup.fs \
  120: 	struct.fs \
  121: 	stuff.fs \
  122: 	tasker.fs \
  123: 	termsize.fs \
  124: 	vt100.fs \
  125: 	vt100key.fs \
  126: 	wordinfo.fs
  127: 
  128: FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_SRC) \
  129: 	ans-report.fs ansi.fs answords.fs \
  130: 	checkans.fs \
  131: 	code.fs colorize.fs \
  132: 	doskey.fs ds2texi.fs \
  133: 	etags.fs filedump.fs \
  134: 	glosgen.fs gray.fs \
  135: 	makedoc.fs \
  136: 	mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
  137: 	more.fs other.fs prims2x.fs random.fs \
  138: 	sieve.fs \
  139: 	site-init.fs \
  140: 	tt.fs sokoban.fs \
  141: 	wordsets.fs \
  142: 	tester.fs coretest.fs postponetest.fs dbltest.fs \
  143: 	bubble.fs siev.fs matrix.fs fib.fs \
  144: 	oof.fs oofsampl.fs objects.fs
  145: 
  146: SOURCES	= CVS compat Makefile.in configure.in configure config.sub config.guess \
  147: 	acconfig.h config.h.in stamp-h.in \
  148: 	install-sh INSTALL README ToDo BUGS model COPYING Benchres \
  149: 	gforth.ds texinfo.tex gforth.1 gforth.el \
  150: 	primitives engine.c main.c io.c memcasecmp.c \
  151: 	m68k.h mips.h 386.h hppa.h cache.c sparc.h power.h alpha.h 32bit.h \
  152: 	getopt.c getopt1.c getopt.h select.c \
  153: 	ecvt.c memcmp.c strtol.c strtoul.c ansidecl.h memmove.c pow10.c atanh.c \
  154: 	strerror.c strsignal.c dblsub.c \
  155: 	INSTALL.DOS makefile.dos mkdosmf.sed configure.bat dosconf.h \
  156: 	startup.dos history.dos \
  157: 	configure.cmd mkos2mf.sed os2conf.h makefile.os2 \
  158: 	glosgen.glo glossaries.doc \
  159: 	$(INCLUDES) $(FORTH_SRC)
  160: 
  161: RCS_FILES =  ToDo model high-level
  162: 
  163: GEN = gforth version.fs
  164: 
  165: OBJECTS	= engine.o io.o main.o memcasecmp.o @LIBOBJS@ @getopt_long@
  166: 
  167: # things that need a working forth system to be generated
  168: FORTH_GEN0 = primitives.b primitives.i prim_labels.i aliases.fs
  169: FORTH_GEN =  $(FORTH_GEN0) @KERNEL@ gforth.fi
  170: # this is used for antidependences,
  171: FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@ 
  172: 
  173: #distributed documentation
  174: DOCDIST = gforth.info* gforth.ps
  175: 
  176: #stuff in a binonly distribution 
  177: BINONLYDIST = config.status Makefile gforth $(OBJECTS) \
  178: 	machine.h config.h kernel.fi stamp-h version.h version.fs \
  179: 	INSTALL.BINDIST
  180: 
  181: KERNLS = kernl16b.fi- kernl16l.fi- \
  182: 	 kernl32b.fi- kernl32l.fi- \
  183: 	 kernl64b.fi- kernl64l.fi-
  184: 
  185: GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) gforth.texi gforth.dvi gforth.ps Makefile configure
  186: 
  187: #standards.info recommends this:
  188: .SUFFIXES:
  189: .SUFFIXES: .c .o
  190: 
  191: all:	version.fs more
  192: 
  193: version.h:	Makefile.in
  194: 		echo "static char gforth_version[]=\"$(VERSION)\" ;" >$@
  195: 
  196: version.fs:	Makefile.in
  197: 		$(MAKE) gforth
  198: 		echo ": version-string s\" $(VERSION)\" ;" >$@
  199: 
  200: more:	$(FORTH_GEN) gforth
  201: 
  202: #from the gcc Makefile: 
  203: #"Deletion of files made during compilation.
  204: # There are four levels of this:
  205: #   `mostlyclean', `clean', `distclean' and `realclean'.
  206: # `mostlyclean' is useful while working on a particular type of machine.
  207: # It deletes most, but not all, of the files made by compilation.
  208: # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
  209: # `clean' deletes everything made by running `make all'.
  210: # `distclean' also deletes the files made by config.
  211: # `realclean' also deletes everything that could be regenerated automatically."
  212: 
  213: mostlyclean:
  214: 		-$(RM) -rf *.s gforth.fi *.fi~ *.fi- version.fs *TAGS \
  215: 		crossdoc.fd doc.fd gforth.texi gforth.fns gforth.aux gforth.cp gforth.cps \
  216: 		gforth.dvi gforth.fn gforth.ky gforth.log gforth.pg \
  217: 		gforth.toc gforth.tp gforth.vr html gforth-$(VERSION).tar.gz \
  218: 		version.h
  219: 
  220: clean:		mostlyclean
  221: 		-$(RM) -rf $(GEN) *.o 
  222: 
  223: distclean:	clean
  224: 		-$(RM) machine.h kernel.fi config.cache config.log \
  225: 		config.status config.h Makefile stamp-h
  226: 
  227: #realclean is useless, but dangerous, so it's commented out
  228: #realclean:	distclean
  229: #		-$(RM) $(GEN_PRECIOUS)
  230: 
  231: #mostlyclean, but also remove some of the stuff that is distributed
  232: virtualclean:	mostlyclean
  233: 		-$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \
  234: 		gforth-$(VERSION).tar.gz config.cache *~ */*~
  235: 
  236: #use dist targets only when srcdir=.
  237: dist:		$(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST)
  238: 		-$(RMTREE) gforth-$(VERSION)
  239: 		mkdir gforth-$(VERSION)
  240: 		$(CP) -rp $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) gforth-$(VERSION)
  241: 		$(TAR) gforth-$(VERSION)|gzip -9 >gforth-$(VERSION).tar.gz
  242: 		-$(RMTREE) gforth-$(VERSION)
  243: 
  244: #use dist targets only when srcdir=.
  245: dosdist:	$(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST)
  246: 		-$(RMTREE) gforth.$(DOSVERSION)
  247: 		mkdir gforth.$(DOSVERSION)
  248: 		$(CP) -rp $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) gforth.$(DOSVERSION)
  249: 		zip -r9 gforth.zip gforth.$(DOSVERSION)/*
  250: 		-$(RMTREE) gforth.$(DOSVERSION)
  251: 
  252: #A source distribution contains only the things needed to install gforth,
  253: #without the documents.
  254: srcdist:	$(SOURCES) $(FORTH_GEN0) @KERNEL@
  255: 		-$(RMTREE) gforth-$(VERSION)
  256: 		mkdir gforth-$(VERSION)
  257: 		$(CP) -rp $(SOURCES) $(FORTH_GEN0) @KERNEL@ gforth-$(VERSION)
  258: 		$(TAR) gforth-$(VERSION)|gzip -9 >gforth-src-$(VERSION).tar.gz
  259: 		-$(RMTREE) gforth-$(VERSION)
  260: 
  261: #A document distribution contains only the documents, which can be created
  262: #with MAKE.
  263: docdist:	$(DOCDIST)
  264: 		-$(RMTREE) gforth-$(VERSION)
  265: 		mkdir gforth-$(VERSION)
  266: 		$(CP) -rp $(DOCDIST) gforth-$(VERSION)
  267: 		$(TAR) gforth-$(VERSION)|gzip -9 >gforth-doc-$(VERSION).tar.gz
  268: 		-$(RMTREE) gforth-$(VERSION)
  269: 
  270: #a binary distribution contains the complete source distribution,
  271: # the objects, the executable and the links. the objects are there for making
  272: # make happy.
  273: bindist:	$(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST)
  274: 		-$(RMTREE) gforth-$(VERSION)
  275: 		mkdir gforth-$(VERSION)
  276: 		$(CP) -rp -d $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST) gforth-$(VERSION)
  277: 		strip gforth-$(VERSION)/gforth
  278: 		$(TAR) gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-@host@.tar.gz
  279: 
  280: #makes a package with only the stuff not present in the source
  281: #package. For installation the source package is still needed!
  282: #This is useful if you want to distribute many binary versions in
  283: #little space (e.g., on floppy disk): Put the source package and
  284: #all the binonly packages you are interested in on the disk. The user
  285: #then just has to unpack the source and his favourite binonly into the
  286: #same directory and has a full binary distribution.
  287: binonlydist:	$(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST)
  288: 		-$(RMTREE) gforth-$(VERSION)
  289: 		mkdir gforth-$(VERSION)
  290: 		$(CP) -p -d  $(BINONLYDIST) gforth-$(VERSION)
  291: 		strip gforth-$(VERSION)/gforth
  292: 		$(TAR) gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-binonly-@host@.tar.gz
  293: 
  294: 
  295: #strip gforth, because the debugging stuff is hardly useful once
  296: # gforth manages to execute more than a few primitives
  297: 
  298: #install does not depend on gforth.info, because that would require
  299: #supplying a lot of files that can be easily generated (only info is
  300: #hard to generate)
  301: install:	gforth $(FORTH_SRC) kernel.fi gforth.fi gforth.1 primitives gforth.TAGS
  302: 		for i in $(bindir) $(mandir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(datadir)/gforth/site-forth; do \
  303: 			$(INSTALL_DIR) $$i; \
  304: 		done
  305: 		touch $(datadir)/gforth/site-forth/site-init.fs
  306: 		-$(RM) $(bindir)/gforth $(bindir)/gforth-$(VERSION)
  307: 		$(INSTALL_PROGRAM) -s gforth $(bindir)
  308: 		ln $(bindir)/gforth $(bindir)/gforth-$(VERSION)
  309: 		$(INSTALL_DATA) $(srcdir)/gforth.1 $(mandir)
  310: 		for i in $(srcdir)/gforth.info*; do $(INSTALL_DATA) $$i $(infodir); done
  311: 		for i in $(FORTH_SRC) primitives; do \
  312: 			$(INSTALL_DATA) $(srcdir)/$$i $(datadir)/gforth/$(VERSION); \
  313: 		done
  314: 		$(INSTALL_DATA) kernel.fi $(libdir)/gforth/$(VERSION)
  315: 		$(RM) gforth.fi; $(MAKE) gforth.fi #gforth.fi contains some path names
  316: 		sed s:$(srcdir)/:$(datadir)/gforth/$(VERSION)/: gforth.TAGS >TAGS; $(INSTALL_DATA) TAGS $(datadir)/gforth/$(VERSION)
  317: 		if test -d $(emacssitelispdir); then \
  318: 			$(INSTALL_DATA) $(srcdir)/gforth.el $(emacssitelispdir); \
  319: 		else \
  320: 			echo ">>>>>Please install $(srcdir)/gforth.el in your .../emacs/site-lisp directory"; \
  321: 		fi
  322: 		echo ">>>>> Please make an entry for Gforth in your info dir file; e.g.:"; \
  323: 		echo "* Gforth: (gforth).	A fast interpreter for the Forth language."
  324: 
  325: install-strip:	install
  326: 
  327: #deinstall all files specific to this version of gforth
  328: #to uninstall version foo, type `make uninstall VERSION=foo'
  329: uninstall:	
  330: 		-$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)
  331: 		@echo -e "Type\n$(RM) -rf $(bindir)/gforth $(mandir)/gforth.1 $(infodir)/gforth.info* $(datadir)/gforth $(libdir)/gforth\nto remove Gforth completely"
  332: 
  333: check test:	gforth gforth.fi
  334: 		$(FORTH) tester.fs coretest.fs postponetest.fs dbltest.fs -e bye
  335: 		$(FORTH) code.fs checkans.fs -e bye
  336: 		@echo 'Expect no differences'
  337: 		$(FORTH) prims2x.fs -e "s\" $(srcdir)/primitives.b\" ' output-c process-file bye"| diff -c - $(srcdir)/primitives.i
  338: 
  339: bench:		gforth gforth.fi
  340: 		@echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
  341: 		time $(FORTH) siev.fs -e "main bye"
  342: 		time $(FORTH) bubble.fs -e "main bye"
  343: 		time $(FORTH) -m 160000 matrix.fs -e "main bye"
  344: 		time $(FORTH) fib.fs -e "main bye"
  345: 
  346: dvi:		gforth.dvi
  347: 
  348: gforth:		$(OBJECTS)
  349: 		-$(CP) gforth gforth~
  350: 		$(GCC) $(LDFLAGS) $(OBJECTS) $(LDLIBS) -o $@
  351: 		@MAKE_EXE@
  352: 
  353: kernl16l.fi-:	$(KERN_SRC) version.fs mach16l.fs $(FORTH_GEN0)
  354: 		$(FORTHK) -e 's" mach16l.fs"' main.fs -e "save-cross kernl16l.fi- $(bindir)/gforth-$(VERSION) bye"
  355: 
  356: kernl16b.fi-:	$(KERN_SRC) version.fs mach16b.fs $(FORTH_GEN0)
  357: 		$(FORTHK) -e 's" mach16b.fs"' main.fs -e "save-cross kernl16b.fi- $(bindir)/gforth-$(VERSION) bye"
  358: 
  359: kernl32l.fi-:	$(KERN_SRC) version.fs mach32l.fs $(FORTH_GEN0)
  360: 		$(FORTHK) -e 's" mach32l.fs"' main.fs -e "save-cross kernl32l.fi- $(bindir)/gforth-$(VERSION) bye"
  361: 
  362: kernl32b.fi-:	$(KERN_SRC) version.fs mach32b.fs $(FORTH_GEN0)
  363: 		$(FORTHK) -e 's" mach32b.fs"' main.fs -e "save-cross kernl32b.fi- $(bindir)/gforth-$(VERSION) bye"
  364: 
  365: kernl64l.fi-:	$(KERN_SRC) version.fs mach64l.fs $(FORTH_GEN0)
  366: 		$(FORTHK) -e 's" mach64l.fs"' main.fs -e "save-cross kernl64l.fi- $(bindir)/gforth-$(VERSION) bye"
  367: 
  368: kernl64b.fi-:	$(KERN_SRC) version.fs mach64b.fs $(FORTH_GEN0)
  369: 		$(FORTHK) -e 's" mach64b.fs"' main.fs -e "save-cross kernl64b.fi- $(bindir)/gforth-$(VERSION) bye"
  370: 
  371: kernl16b.fi:	$(KERNLS)
  372: 		-$(CP) kernl16b.fi kernl16b.fi~
  373: 		-$(CP) kernl16b.fi- kernl16b.fi
  374: 		@LINK_KERNL16B@
  375: 
  376: kernl16l.fi:	$(KERNLS)
  377: 		-$(CP) kernl16l.fi kernl16l.fi~
  378: 		-$(CP) kernl16l.fi- kernl16l.fi
  379: 		@LINK_KERNL16L@
  380: 
  381: kernl32b.fi:	$(KERNLS)
  382: 		-$(CP) kernl32b.fi kernl32b.fi~
  383: 		-$(CP) kernl32b.fi- kernl32b.fi
  384: 		@LINK_KERNL32B@
  385: 
  386: kernl32l.fi:	$(KERNLS)
  387: 		-$(CP) kernl32l.fi kernl32l.fi~
  388: 		-$(CP) kernl32l.fi- kernl32l.fi
  389: 		@LINK_KERNL32L@
  390: 
  391: kernl64b.fi:	$(KERNLS)
  392: 		-$(CP) kernl64b.fi kernl64b.fi~
  393: 		-$(CP) kernl64b.fi- kernl64b.fi
  394: 		@LINK_KERNL64B@
  395: 
  396: kernl64l.fi:	$(KERNLS)
  397: 		-$(CP) kernl64l.fi kernl64l.fi~
  398: 		-$(CP) kernl64l.fi- kernl64l.fi
  399: 		@LINK_KERNL64L@
  400: 
  401: gforth.fi:	@kernel_fi@ gforth $(GFORTH_FI_SRC)
  402: 		$(FORTHK) $(FORTHSIZES) startup.fs -e "savesystem gforth.fi1 bye"
  403: 		$(FORTHK) --offset-image $(FORTHSIZES) startup.fs -e "savesystem gforth.fi2 bye"
  404: 		$(FORTHK) -m 100000 startup.fs  comp-image.fs -e "comp-image gforth.fi1 gforth.fi2 gforth.fi bye"
  405: 
  406: #TAGS is a GNU standard target
  407: TAGS:		gforth.TAGS
  408: 		$(CP) gforth.TAGS $@
  409: 
  410: gforth.TAGS:	@kernel_fi@ gforth $(GFORTH_FI_SRC) primitives.TAGS
  411: 		$(FORTHK) etags.fs startup.fs -e bye
  412: 		cat TAGS primitives.TAGS kernel.TAGS >gforth.TAGS
  413: 		rm TAGS
  414: 
  415: engine.s:	engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES) config.h
  416: 		$(GCC) $(CFLAGS) $(ENGINE_FLAGS) -S $(srcdir)/engine.c
  417: 
  418: engine.o:	engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES) config.h
  419: 		$(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c $(srcdir)/engine.c
  420: 
  421: main.o:		main.c machine.h threading.h $(INCLUDES) config.h version.h
  422: 		$(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c $(srcdir)/main.c
  423: 
  424: strtoul.o:	strtoul.c strtol.c
  425: 
  426: primitives.b:	primitives
  427: 		m4 -s $(srcdir)/primitives >$@ 
  428: 
  429: primitives.i :	primitives.b prims2x.fs
  430: 		$(FORTHK) prims2x.fs -e "s\" primitives.b\" ' output-c process-file bye" >$@
  431: 
  432: prim_labels.i :	primitives.b prims2x.fs
  433: 		$(FORTHK) prims2x.fs -e "s\" primitives.b\" ' output-label process-file bye" >$@
  434: 
  435: aliases.fs:	primitives.b prims2x.fs
  436: 		$(FORTHK) prims2x.fs -e "s\" primitives.b\" ' output-alias process-file bye" >$@
  437: 
  438: primitives.fs:	primitives.b prims2x.fs
  439: 		$(FORTHK) prims2x.fs -e "s\" primitives.b\" ' output-forth process-file bye" >$@
  440: 
  441: primitives.TAGS: primitives.b prims2x.fs
  442: 		$(FORTHK) prims2x.fs -e "s\" $(srcdir)/primitives.b\" ' output-tag process-file bye" >$@
  443: 
  444: doc.fd:		makedoc.fs float.fs search-order.fs glocals.fs environ.fs \
  445: 		 toolsext.fs wordinfo.fs \
  446: 		 vt100.fs colorize.fs see.fs bufio.fs debug.fs history.fs \
  447: 		 doskey.fs vt100key.fs startup.fs assert.fs debugging.fs code.fs
  448: 		$(FORTHK) -e "s\" doc.fd\"" makedoc.fs startup.fs code.fs -e bye
  449: 
  450: crossdoc.fd:	$(KERN_SRC) version.fs $(FORTH_GEN0)
  451: 		$(FORTHK) -e 's" mach32l.fs"' main.fs -e bye
  452: 
  453: gforth.texi:	gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd
  454: 		$(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" >$@
  455: 
  456: checkdoc:	gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd answords.fs
  457: 		$(FORTHK) ds2texi.fs answords.fs -e bye
  458: 
  459: dvi:		gforth.dvi
  460: 
  461: gforth.dvi gforth.fns:	gforth.texi
  462: 		$(TEXI2DVI) gforth.texi
  463: 
  464: gforth.ps:	gforth.dvi
  465: 		$(DVI2PS) gforth.dvi -o $@
  466: 
  467: info:		gforth.info
  468: 
  469: gforth.info:	gforth.texi
  470: 		-$(MAKEINFO) gforth.texi
  471: 
  472: html:		gforth.texi
  473: 		-$(RM) html/*
  474: 		-mkdir html
  475: 		cd html; $(TEXI2HTML) -menu -split_node ../gforth.texi
  476: 
  477: doc:		gforth.ps html
  478: 
  479: # For an explanation of the following Makefile rules, see node
  480: # `Automatic Remaking' in GNU Autoconf documentation.
  481: $(srcdir)/configure:	configure.in 
  482: 		cd $(srcdir) && autoconf
  483: 
  484: # autoheader might not change config.h.in, so touch a stamp file.
  485: $(srcdir)/config.h.in:	stamp-h.in
  486: $(srcdir)/stamp-h.in:	configure.in  acconfig.h
  487: 		cd $(srcdir) && autoheader
  488: 		echo timestamp > $(srcdir)/stamp-h.in
  489: 
  490: config.h:	stamp-h
  491: stamp-h:	config.h.in config.status
  492: 		CONFIG_FILES=$@ CONFIG_HEADERS=config.h ./config.status
  493: 		echo > stamp-h
  494: Makefile:	Makefile.in config.status
  495: 		CONFIG_FILES=$@ CONFIG_HEADERS=config.h ./config.status
  496:      
  497: config.status:	configure
  498: 		./config.status --recheck
  499: 
  500: 
  501: #create files for DOS, because DOS cannot do it itself
  502: makefile.dos: mkdosmf.sed Makefile.in
  503: 	sed -f mkdosmf.sed <Makefile.in >makefile.dos
  504: 
  505: makefile.os2: mkos2mf.sed Makefile.in
  506: 	sed -f mkos2mf.sed <Makefile.in >makefile.os2
  507: 	echo '%.o:	%.c' >>makefile.os2
  508: 	echo '		$$(GCC) $$(CFLAGS) -c $$<' >>makefile.os2
  509: 
  510: history.dos: history.fs Makefile.in
  511: 	sed -e "s,~/\.gforth-history,/gforth.his,g" <history.fs >history.dos
  512: 
  513: startup.dos: startup.fs Makefile.in
  514: 	sed -e "s/\\\\ include doskey/include doskey/g" \
  515: 	    -e "s/include vt100key/\\\\ include vt100key/g" <startup.fs >startup.dos
  516: 

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