File:  [gforth] / gforth / Makefile.in
Revision 1.86: download - view: text, annotated - select for diffs
Sun Feb 16 20:51:05 1997 UTC (27 years, 1 month ago) by pazsan
Branches: MAIN
CVS tags: HEAD
go up to 0.3.0

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

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