File:  [gforth] / gforth / Makefile.in
Revision 1.38: download - view: text, annotated - select for diffs
Tue Nov 7 18:06:29 1995 UTC (28 years, 5 months ago) by anton
Branches: MAIN
CVS tags: HEAD
added copyright headers
changes to loadfilename & co. to make savesystem transparent to
 assertions and ~~

    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.1beta#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: LN_S	= @LN_S@
   37: GCC	= gcc
   38: CC	= $(GCC)
   39: FORTH	= ./gforth
   40: FORTHK	= $(FORTH) -p . -i kernal.fi
   41: STRIP	= strip
   42: TEXI2DVI = texi2dvi
   43: DVI2PS	= dvips -D300
   44: #you can get texi2html from http://asis01.cern.ch/infohtml/texi2html.html
   45: TEXI2HTML = texi2html
   46: MAKEINFO = makeinfo
   47: XCFLAGS	= @CFLAGS@
   48: XDEFINES = @DEFS@
   49: SWITCHES = $(XCFLAGS) $(XDEFINES) #-DNDEBUG #turn off assertions
   50: ENGINE_FLAGS =  -fno-defer-pop -fcaller-saves
   51: DEBUGFLAG = @DEBUGFLAG@
   52: CFLAGS	= $(DEBUGFLAG) -pipe -O4 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(datadir)/gforth/$(VERSION):$(libdir)/gforth/$(VERSION):.\"
   53: 
   54: #John Wavrik should use -Xlinker -N to get a writable text (executable)
   55: XLDFLAGS = @LDFLAGS@
   56: GCCLDFLAGS = @GCCLDFLAGS@
   57: LDFLAGS	=  $(DEBUGFLAG) $(XLDFLAGS) $(GCCLDFLAGS)
   58: LDLIBS	= @LIBS@
   59: 
   60: prefix = @prefix@
   61: exec_prefix = @exec_prefix@
   62: srcdir = @srcdir@
   63: bindir = $(exec_prefix)/bin
   64: #read-only architecture-independent files
   65: datadir = $(prefix)/share
   66: #read-only architecture-dependent non-ascii files
   67: libdir = $(prefix)/lib
   68: infodir = $(prefix)/info
   69: mandir = $(prefix)/man/man1
   70: 
   71: 
   72: INCLUDES = forth.h threading.h io.h io-dos.h
   73: 
   74: KERN_SRC = main.fs search-order.fs cross.fs aliases.fs vars.fs add.fs \
   75: 	errore.fs kernal.fs version.fs extend.fs tools.fs toolsext.fs
   76: 
   77: FORTH_SRC = anslocal.fs add.fs assert.fs ansi.fs answords.fs blocks.fs bufio.fs checkans.fs \
   78: 	code.fs colorize.fs cross.fs debug.fs debugging.fs doskey.fs ds2texi.fs \
   79: 	dumpimage.fs environ.fs errore.fs etags.fs extend.fs filedump.fs \
   80: 	float.fs glocals.fs glosgen.fs gray.fs hash.fs history.fs \
   81: 	kernal.fs locals-test.fs look.fs main.fs makedoc.fs \
   82:  	mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
   83: 	other.fs prims2x.fs random.fs search-order.fs see.fs sieve.fs source.fs \
   84: 	startup.fs struct.fs tools.fs toolsext.fs tt.fs vars.fs vt100.fs \
   85: 	vt100key.fs wordinfo.fs wordsets.fs \
   86: 	tester.fs coretest.fs	
   87: 
   88: SOURCES	= Makefile.in configure.in configure config.sub  config.guess \
   89: 	install-sh INSTALL README ToDo BUGS model COPYING \
   90: 	gforth.ds texinfo.tex gforth.1 gforth.el \
   91: 	primitives engine.c main.c io.c \
   92: 	m68k.h mips.h 386.h hppa.h cache.c sparc.h power.h alpha.h 32bit.h \
   93: 	getopt.c getopt1.c getopt.h select.c \
   94: 	ecvt.c memcmp.c strtol.c strtoul.c ansidecl.h memmove.c pow10.c \
   95: 	strerror.c strsignal.c \
   96: 	makefile.dos mkdosmf.sed configure.bat startup.dos \
   97: 	glosgen.glo glossaries.doc \
   98: 	$(INCLUDES) $(FORTH_SRC)
   99: 
  100: RCS_FILES =  ToDo model high-level
  101: 
  102: GEN = gforth
  103: 
  104: OBJECTS	= engine.o io.o main.o @LIBOBJS@ @getopt_long@
  105: 
  106: # things that need a working forth system to be generated
  107: FORTH_GEN0 = primitives.b primitives.i prim_labels.i aliases.fs
  108: FORTH_GEN =  $(FORTH_GEN0) @KERNAL@ gforth.fi
  109: # this is used for antidependences,
  110: FORTH_GEN1 = $(FORTH_GEN0) @kernal_fi@ 
  111: 
  112: #distributed documentation
  113: DOCDIST = gforth.texi gforth.fns gforth.ps gforth.info*
  114: 
  115: KERNLS = kernl16b.fi+ kernl16l.fi+ \
  116: 	 kernl32b.fi+ kernl32l.fi+ \
  117: 	 kernl64b.fi+ kernl64l.fi+
  118: 
  119: GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) gforth.texi gforth.dvi gforth.ps Makefile configure
  120: 
  121: #standards.info recommends this:
  122: .SUFFIXES:
  123: .SUFFIXES: .c .o
  124: 
  125: all:
  126: 	if [ ! -f gforth ]; then $(MAKE) first; fi
  127: 	$(MAKE) more
  128: 
  129: first:	gforth
  130: 
  131: more:	$(FORTH_GEN) gforth
  132: 
  133: #from the gcc Makefile: 
  134: #"Deletion of files made during compilation.
  135: # There are four levels of this:
  136: #   `mostlyclean', `clean', `distclean' and `realclean'.
  137: # `mostlyclean' is useful while working on a particular type of machine.
  138: # It deletes most, but not all, of the files made by compilation.
  139: # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
  140: # `clean' deletes everything made by running `make all'.
  141: # `distclean' also deletes the files made by config.
  142: # `realclean' also deletes everything that could be regenerated automatically."
  143: 
  144: clean:		
  145: 		-$(RM) $(GEN) *.o *.s gforth.fi
  146: 
  147: distclean:	clean
  148: 		-$(RM) machine.h kernal.fi config.cache config.log
  149: 
  150: realclean:	distclean
  151: 		-$(RM) $(GEN_PRECIOUS)
  152: 
  153: dist:		$(SOURCES) $(FORTH_GEN) $(DOCDIST)
  154: 		-rm -rf gforth-$(VERSION)
  155: 		mkdir gforth-$(VERSION)
  156: 		cp -p $(SOURCES) $(FORTH_GEN0) @KERNAL@ $(DOCDIST) gforth-$(VERSION)
  157: 		tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION).tar.gz
  158: 		-rm -rf gforth-$(VERSION)
  159: 
  160: #a binary distribution contains the complete source distribution,
  161: # the objects, the executable and the links. the objects are there for making
  162: # make happy.
  163: bindist:	$(SOURCES) $(FORTH_GEN) gforth $(OBJECTS) config.status Makefile
  164: 		-rm -rf gforth-$(VERSION)
  165: 		mkdir gforth-$(VERSION)
  166: 		cp -p -d $(SOURCES) config.status Makefile $(FORTH_GEN) gforth $(OBJECTS) machine.h kernal.fi gforth-$(VERSION)
  167: 		strip gforth-$(VERSION)/gforth
  168: 		tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-@host@.tar.gz
  169: 
  170: #makes a package with only the stuff not present in the source
  171: #package. For installation the source package is still needed!
  172: #This is useful if you want to distribute many binary versions in
  173: #little space (e.g., on floppy disk): Put the source package and
  174: #all the binonly packages you are interested in on the disk. The user
  175: #then just has to unpack the source and his favourite binonly into the
  176: #same directory and has a full binary distribution.
  177: binonlydist:	$(SOURCES) $(FORTH_GEN) gforth $(OBJECTS)
  178: 		-rm -rf gforth-$(VERSION)
  179: 		mkdir gforth-$(VERSION)
  180: 		cp -p -d  config.status Makefile gforth $(OBJECTS) machine.h kernal.fi gforth-$(VERSION)
  181: 		strip gforth-$(VERSION)/gforth
  182: 		tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-binonly-@host@.tar.gz
  183: 
  184: 
  185: 
  186: #strip gforth, because the debugging stuff is hardly useful once
  187: # gforth manages to execute more than a few primitives
  188: 
  189: install:	gforth $(FORTH_SRC) kernal.fi gforth.fi gforth.1 gforth.info
  190: 		$(INSTALL) -d $(bindir) $(mandir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION)	
  191: 		$(INSTALL_PROGRAM) -s gforth $(bindir)
  192: 		$(INSTALL_DATA) gforth.1 $(mandir)
  193: 		$(INSTALL_DATA) gforth.info* $(infodir)
  194: 		for i in $(FORTH_SRC); do \
  195: 			$(INSTALL_DATA) $$i $(datadir)/gforth/$(VERSION); \
  196: 		done
  197: 		rm gforth.fi; make gforth.fi #gforth.fi contains some path names
  198: 		$(INSTALL_DATA) kernal.fi gforth.fi $(libdir)/gforth/$(VERSION)
  199: 
  200: check:		test
  201: 		touch test
  202: 
  203: test:		gforth
  204: 		@echo 'Expect to see INCORRECT RESULT: { GS1 -> <TRUE> <TRUE> }'
  205: 		@echo 'This is a bug of the testing program'
  206: 		$(FORTH) tester.fs coretest.fs -e bye
  207: 		$(FORTH) code.fs checkans.fs -e bye
  208: 		@echo 'Expect no differences'
  209: 		$(FORTH) prims2x.fs -e "s\" primitives.b\" ' output-c process-file bye"| diff -c - primitives.i
  210: 
  211: dvi:		gforth.dvi
  212: 
  213: gforth:		$(OBJECTS)
  214: 		-$(CP) gforth gforth~
  215: 		$(GCC) $(LDFLAGS) $(OBJECTS) $(LDLIBS) -o $@
  216: 		@MAKE_EXE@
  217: 
  218: kernl16l.fi+:	$(KERN_SRC) mach16l.fs $(FORTH_GEN0)
  219: 		$(FORTHK) -e 's" mach16l.fs"' main.fs
  220: 
  221: kernl16b.fi+:	$(KERN_SRC) mach16b.fs $(FORTH_GEN0)
  222: 		$(FORTHK) -e 's" mach16b.fs"' main.fs
  223: 
  224: kernl32l.fi+:	$(KERN_SRC) mach32l.fs $(FORTH_GEN0)
  225: 		$(FORTHK) -e 's" mach32l.fs"' main.fs
  226: 
  227: kernl32b.fi+:	$(KERN_SRC) mach32b.fs $(FORTH_GEN0)
  228: 		$(FORTHK) -e 's" mach32b.fs"' main.fs
  229: 
  230: kernl64l.fi+:	$(KERN_SRC) mach64l.fs $(FORTH_GEN0)
  231: 		$(FORTHK) -e 's" mach64l.fs"' main.fs
  232: 
  233: kernl64b.fi+:	$(KERN_SRC) mach64b.fs $(FORTH_GEN0)
  234: 		$(FORTHK) -e 's" mach64b.fs"' main.fs
  235: 
  236: kernl16b.fi:	$(KERNLS)
  237: 		-$(CP) kernl16b.fi kernl16b.fi~
  238: 		-$(CP) kernl16b.fi+ kernl16b.fi
  239: 		@LINK_KERNL16B@
  240: 
  241: kernl16l.fi:	$(KERNLS)
  242: 		-$(CP) kernl16l.fi kernl16l.fi~
  243: 		-$(CP) kernl16l.fi+ kernl16l.fi
  244: 		@LINK_KERNL16L@
  245: 
  246: kernl32b.fi:	$(KERNLS)
  247: 		-$(CP) kernl32b.fi kernl32b.fi~
  248: 		-$(CP) kernl32b.fi+ kernl32b.fi
  249: 		@LINK_KERNL32B@
  250: 
  251: kernl32l.fi:	$(KERNLS)
  252: 		-$(CP) kernl32l.fi kernl32l.fi~
  253: 		-$(CP) kernl32l.fi+ kernl32l.fi
  254: 		@LINK_KERNL32L@
  255: 
  256: kernl64b.fi:	$(KERNLS)
  257: 		-$(CP) kernl64b.fi kernl64b.fi~
  258: 		-$(CP) kernl64b.fi+ kernl64b.fi
  259: 		@LINK_KERNL64B@
  260: 
  261: kernl64l.fi:	$(KERNLS)
  262: 		-$(CP) kernl64l.fi kernl64l.fi~
  263: 		-$(CP) kernl64l.fi+ kernl64l.fi
  264: 		@LINK_KERNL64L@
  265: 
  266: gforth.fi:	@kernal_fi@ gforth startup.fs glocals.fs search-order.fs hash.fs float.fs debugging.fs environ.fs wordinfo.fs look.fs vt100.fs see.fs bufio.fs debug.fs history.fs vt100key.fs assert.fs source.fs blocks.fs struct.fs dumpimage.fs
  267: 		$(FORTHK) startup.fs dumpimage.fs -e "savesystem gforth.fi bye"
  268: 
  269: engine.s:	engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES)
  270: 		$(GCC) $(CFLAGS) $(ENGINE_FLAGS) -S engine.c
  271: 
  272: engine.o:	engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES)
  273: 		$(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c engine.c
  274: 
  275: main.o:		main.c machine.h threading.h $(INCLUDES)
  276: 		$(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c main.c
  277: 
  278: strtoul.o:	strtoul.c strtol.c
  279: 
  280: primitives.b:	primitives
  281: 		m4 primitives >$@ 
  282: 
  283: primitives.i :	primitives.b prims2x.fs
  284: 		$(FORTHK) prims2x.fs -e "s\" primitives.b\" ' output-c process-file bye" >$@
  285: 
  286: prim_labels.i :	primitives.b prims2x.fs
  287: 		$(FORTHK) prims2x.fs -e "s\" primitives.b\" ' output-label process-file bye" >$@
  288: 
  289: aliases.fs:	primitives.b prims2x.fs
  290: 		$(FORTHK) prims2x.fs -e "s\" primitives.b\" ' output-alias process-file bye" >$@
  291: 
  292: primitives.fs:	primitives.b prims2x.fs
  293: 		$(FORTHK) prims2x.fs -e "s\" primitives.b\" ' output-forth process-file bye" >$@
  294: 
  295: version.fs:	Makefile.in
  296: 		echo ": version-string s\" $(VERSION)\" ;" >$@
  297: 
  298: version.c:	Makefile.in
  299: 		echo "char gforth_version[]=\"$(VERSION)\" ;" >$@
  300: 
  301: 
  302: doc.fd:		makedoc.fs float.fs search-order.fs glocals.fs environ.fs \
  303: 		 toolsext.fs wordinfo.fs \
  304: 		 vt100.fs colorize.fs see.fs bufio.fs debug.fs history.fs \
  305: 		 doskey.fs vt100key.fs startup.fs assert.fs debugging.fs code.fs
  306: 		$(FORTHK) -e "s\" doc.fd\"" makedoc.fs startup.fs code.fs -e bye
  307: 
  308: crossdoc.fd:	$(KERN_SRC) $(FORTH_GEN0)
  309: 		$(FORTHK) -e 's" mach32l.fs"' main.fs
  310: 
  311: gforth.texi:	gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd
  312: 		$(FORTHK) ds2texi.fs -e "s\" gforth.ds\" r/o open-file throw ds2texi bye" >$@
  313: 
  314: checkdoc:	gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd answords.fs
  315: 		$(FORTHK) ds2texi.fs answords.fs -e bye
  316: 
  317: gforth.dvi:	gforth.texi
  318: 		$(TEXI2DVI) gforth.texi
  319: 
  320: gforth.ps:	gforth.dvi
  321: 		$(DVI2PS) gforth.dvi -o $@
  322: 
  323: gforth.info:	gforth.texi
  324: 		-$(MAKEINFO) gforth.texi
  325: 
  326: html:		gforth.texi
  327: 		-$(RM) html/*
  328: 		-mkdir html
  329: 		cd html; $(TEXI2HTML) -menu -split_node ../gforth.texi
  330: 
  331: # For an explanation of the following Makefile rules, see node
  332: # `Automatic Remaking' in GNU Autoconf documentation.
  333: Makefile: Makefile.in config.status
  334: 	CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
  335: config.status: configure
  336: 	./config.status --recheck
  337: configure: configure.in
  338: 	cd $(srcdir) && autoconf
  339: 
  340: makefile.dos: mkdosmf.sed Makefile.in
  341: 	sed -f mkdosmf.sed <Makefile.in >makefile.dos
  342: 
  343: startup.dos: startup.fs Makefile.in
  344: 	sed -e "s/\\\\ include doskey/include doskey/g" \
  345: 	    -e "s/include vt100key/\\\\ include vt100key/g" <$< >$@

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