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