File:  [gforth] / gforth / Makefile.in
Revision 1.62: download - view: text, annotated - select for diffs
Thu May 23 15:13:07 1996 UTC (27 years, 10 months ago) by anton
Branches: MAIN
CVS tags: HEAD
changed bahviour of system (no longer returns wretval, but puts it in $?)
added (system) ( c_addr u -- wretval wior )
changed close-pipe (now also returns wretval)
changed calls to strncasecmp to memcasecmp

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

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