File:  [gforth] / gforth / Makefile.in
Revision 1.68: download - view: text, annotated - select for diffs
Thu Oct 3 16:05:33 1996 UTC (27 years, 6 months ago) by anton
Branches: MAIN
CVS tags: HEAD
Made PATHSEP a configure variable
"make dist" now works
minor bugfixes

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

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