File:  [gforth] / gforth / Makefile.in
Revision 1.51: download - view: text, annotated - select for diffs
Tue Dec 26 17:35:34 1995 UTC (28 years, 4 months ago) by anton
Branches: MAIN
CVS tags: HEAD
added config.h support (acconfig.h, changes in Makefile.in)
check for sys_siglist declaration
fixed bug in engine.c:cstr()
prims2x.fs now outputs synclines only in C code

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

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