[gforth] / gforth / Makefile.in  

gforth: gforth/Makefile.in


1 : anton 1.38 #Makefile for Gforth
2 :    
3 : anton 1.91 #Copyright (C) 1995-1997 Free Software Foundation, Inc.
4 : anton 1.38
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 : anton 1.9 # 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 : pazsan 1.1
26 : anton 1.77 #gforth version
27 :     VERSION_MAJOR=0
28 : pazsan 1.88 VERSION_MINOR=3
29 : anton 1.98 VERSION_RELEASE=1
30 : anton 1.77 VERSION =$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_RELEASE)
31 :     DOSVERSION=$(VERSION_MAJOR)$(VERSION_MINOR)$(VERSION_RELEASE)
32 : anton 1.9 SHELL = /bin/sh
33 : pazsan 1.4 RM = rm
34 : pazsan 1.74 RMTREE = rm -rf
35 : pazsan 1.4 CP = cp
36 : pazsan 1.74 TAR = tar cf -
37 : anton 1.9 INSTALL = @INSTALL@
38 :     INSTALL_PROGRAM = @INSTALL_PROGRAM@
39 :     INSTALL_DATA = @INSTALL_DATA@
40 :     LN_S = @LN_S@
41 : pazsan 1.48 GCC = @CC@
42 : anton 1.23 CC = $(GCC)
43 : anton 1.68 PATHSEP = @PATHSEP@
44 : anton 1.67 FORTHPATH = $(libdir)/gforth/site-forth$(PATHSEP)$(datadir)/gforth/site-forth$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)$(PATHSEP).
45 : anton 1.72 FORTHSIZES = @FORTHSIZES@
46 : anton 1.67 FORTH = ./gforth -p $(FORTHPATH)$(PATHSEP)$(srcdir)
47 : anton 1.87 FORTHKFLAGS= -p .$(PATHSEP)$(srcdir) -i ./kernel.fi
48 :     FORTHK = ./gforth $(FORTHKFLAGS)
49 : anton 1.66 FORTHP = ./gforth -i ./kernel.fi
50 : anton 1.22 STRIP = strip
51 : anton 1.32 TEXI2DVI = texi2dvi
52 : anton 1.38 DVI2PS = dvips -D300
53 : anton 1.99 #you can get texi2html from http://wwwcn.cern.ch/dci/texi2html/
54 : anton 1.15 TEXI2HTML = texi2html
55 : anton 1.11 MAKEINFO = makeinfo
56 : anton 1.9 XCFLAGS = @CFLAGS@
57 :     XDEFINES = @DEFS@
58 : anton 1.12 SWITCHES = $(XCFLAGS) $(XDEFINES) #-DNDEBUG #turn off assertions
59 : pazsan 1.48 ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves
60 : pazsan 1.30 DEBUGFLAG = @DEBUGFLAG@
61 : anton 1.100 CFLAGS = $(DEBUGFLAG) -I$(srcdir)/engine -I$(srcdir) -O4 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(FORTHPATH)\"
62 : pazsan 1.1
63 :     #John Wavrik should use -Xlinker -N to get a writable text (executable)
64 : pazsan 1.30 XLDFLAGS = @LDFLAGS@
65 :     GCCLDFLAGS = @GCCLDFLAGS@
66 :     LDFLAGS = $(DEBUGFLAG) $(XLDFLAGS) $(GCCLDFLAGS)
67 : anton 1.9 LDLIBS = @LIBS@
68 :    
69 : anton 1.52 VPATH = @srcdir@
70 : anton 1.9 prefix = @prefix@
71 :     exec_prefix = @exec_prefix@
72 :     srcdir = @srcdir@
73 :     bindir = $(exec_prefix)/bin
74 :     #read-only architecture-independent files
75 :     datadir = $(prefix)/share
76 :     #read-only architecture-dependent non-ascii files
77 :     libdir = $(prefix)/lib
78 :     infodir = $(prefix)/info
79 : anton 1.52 mandir = $(prefix)/man
80 :     man1dir= $(mandir)/man1
81 :     man1ext= .1
82 :     #older emacses have their site-lisp in $(libdir)/emacs/
83 :     emacssitelispdir=$(datadir)/emacs/site-lisp
84 : pazsan 1.1
85 : anton 1.100 INCLUDES = engine/CVS engine/forth.h engine/threaded.h engine/io.h
86 : pazsan 1.1
87 : anton 1.52 KERN_SRC = \
88 : anton 1.100 kernel/CVS \
89 :     kernel/aliases0.fs \
90 :     kernel/aliases.fs \
91 :     kernel/args.fs \
92 :     kernel/cond.fs \
93 :     kernel/cond-old.fs \
94 : anton 1.52 cross.fs \
95 : anton 1.100 kernel/errore.fs \
96 :     kernel/files.fs \
97 :     kernel/require.fs \
98 :     kernel/paths.fs \
99 :     kernel/kernel.fs \
100 :     kernel/main.fs \
101 :     kernel/prim0.fs \
102 :     search.fs \
103 :     kernel/special.fs \
104 :     kernel/tools.fs \
105 :     kernel/toolsext.fs \
106 :     kernel/vars.fs \
107 :     kernel/accept.fs \
108 :     kernel/basics.fs \
109 :     kernel/interp.fs \
110 :     kernel/io.fs \
111 :     kernel/license.fs \
112 :     kernel/nio.fs \
113 :     kernel/saccept.fs
114 : anton 1.52
115 :     GFORTH_FI_SRC = \
116 :     assert.fs \
117 : anton 1.100 blocked.fb \
118 : anton 1.52 blocks.fs \
119 :     bufio.fs \
120 :     debug.fs \
121 : anton 1.100 debugs.fs \
122 :     savesys.fs \
123 : anton 1.52 environ.fs \
124 : pazsan 1.82 errors.fs \
125 :     extend.fs \
126 : anton 1.52 float.fs \
127 :     glocals.fs \
128 :     hash.fs \
129 :     history.fs \
130 : anton 1.64 intcomp.fs \
131 : anton 1.52 look.fs \
132 : anton 1.100 search.fs \
133 : anton 1.52 see.fs \
134 : pazsan 1.85 see-ext.fs \
135 : anton 1.52 source.fs \
136 :     startup.fs \
137 :     struct.fs \
138 :     stuff.fs \
139 : pazsan 1.60 tasker.fs \
140 : anton 1.52 termsize.fs \
141 :     vt100.fs \
142 :     vt100key.fs \
143 :     wordinfo.fs
144 :    
145 :     FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_SRC) \
146 : anton 1.75 ans-report.fs ansi.fs answords.fs \
147 : anton 1.100 code.fs colorize.fs comp-i.fs \
148 : anton 1.52 doskey.fs ds2texi.fs \
149 :     etags.fs filedump.fs \
150 :     glosgen.fs gray.fs \
151 : anton 1.100 doc/makedoc.fs \
152 : anton 1.49 mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
153 : anton 1.52 more.fs other.fs prims2x.fs random.fs \
154 : anton 1.100 siteinit.fs \
155 : anton 1.52 tt.fs sokoban.fs \
156 :     wordsets.fs \
157 : anton 1.100 test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs \
158 :     test/other.fs test/checkans.fs test/CVS \
159 : pazsan 1.65 bubble.fs siev.fs matrix.fs fib.fs \
160 : anton 1.75 oof.fs oofsampl.fs objects.fs
161 : pazsan 1.1
162 : anton 1.100 COMPAT = compat/CVS compat/README compat/control.fs compat/anslocal.fs \
163 :     compat/struct.fs compat/loops.fs
164 :    
165 :     ALLSUBDIRS = engine
166 :    
167 :     SOURCES = CVS compat Makefile.in engine/Makefile.in gforthmi \
168 : anton 1.91 configure.in configure config.sub config.guess \
169 : anton 1.100 acconfig.h engine/config.h.in stamp-h.in \
170 : anton 1.40 install-sh INSTALL README ToDo BUGS model COPYING Benchres \
171 : anton 1.100 doc/gforth.ds doc/texinfo.tex doc/gforth.1 gforth.el \
172 :     prim engine/engine.c engine/main.c engine/io.c engine/memcmpc.c \
173 :     arch/m68k/machine.h arch/mips/machine.h arch/386/machine.h \
174 :     arch/hppa/machine.h arch/sparc/machine.h arch/power/machine.h \
175 :     arch/alpha/machine.h \
176 :     engine/cache.c engine/32bit.h \
177 :     engine/getopt.c engine/getopt1.c engine/getopt.h engine/select.c \
178 :     engine/ecvt.c engine/memcmp.c engine/strtol.c engine/strtoul.c \
179 :     engine/ansidecl.h engine/memmove.c \
180 :     engine/pow10.c engine/atanh.c \
181 :     engine/strerror.c engine/strsignal.c engine/strsig.c engine/dblsub.c \
182 :     INSTALL.DOS makefile.dos engine/makefile.dos mkdosmf.sed config.bat \
183 :     dosconf.h gforthmi.bat startup.dos history.dos mkinstalldirs \
184 :     configure.cmd mkos2mf.sed os2conf.h makefile.os2 engine/makefile.os2 \
185 :     gforthmi.cmd glosgen.glo doc/glossaries.doc \
186 :     $(INCLUDES) $(FORTH_SRC) $(COMPAT)
187 : pazsan 1.1
188 : anton 1.5 RCS_FILES = ToDo model high-level
189 : pazsan 1.1
190 : anton 1.100 GEN = gforth gforth-ditc kernel/version.fs version-stamp
191 : pazsan 1.1
192 : anton 1.100 OBJECTS0 = engine/replace.a
193 :     OBJECTS = engine/engine.o engine/main.o
194 :     OBJECTS_DITC = engine/engine-ditc.o engine/main-ditc.o
195 : pazsan 1.1
196 :     # things that need a working forth system to be generated
197 : anton 1.100 FORTH_GEN0 = prim.b engine/prim.i engine/prim_lab.i kernel/aliases.fs kernel/prim.fs
198 : pazsan 1.65 FORTH_GEN = $(FORTH_GEN0) @KERNEL@ gforth.fi
199 : pazsan 1.1 # this is used for antidependences,
200 : pazsan 1.65 FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@
201 : anton 1.5
202 : anton 1.38 #distributed documentation
203 : anton 1.100 DOCDIST = doc/gforth.info doc/gforth.info-* doc/gforth.ps
204 : anton 1.5
205 : anton 1.72 #stuff in a binonly distribution
206 : anton 1.87 BINONLYDIST = config.status Makefile gforth gforth-ditc \
207 :     $(OBJECTS0) $(OBJECTS) $(OBJECTS_DITC)\
208 : anton 1.100 machine/machine.h engine/config.h kernel.fi \
209 :     stamp-h engine/version.h kernel/version.fs version-stamp \
210 : anton 1.72 INSTALL.BINDIST
211 :    
212 : pazsan 1.48 KERNLS = kernl16b.fi- kernl16l.fi- \
213 :     kernl32b.fi- kernl32l.fi- \
214 :     kernl64b.fi- kernl64l.fi-
215 : pazsan 1.30
216 : anton 1.100 GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) doc/gforth.texi doc/gforth.dvi doc/gforth.ps Makefile configure
217 : pazsan 1.1
218 : anton 1.9 #standards.info recommends this:
219 :     .SUFFIXES:
220 :     .SUFFIXES: .c .o
221 :    
222 : anton 1.100 all: kernel/version.fs more
223 : pazsan 1.1
224 : anton 1.78 #this rule avoids remaking everything after minor changes in Makefile.in
225 : anton 1.100 version: Makefile.in
226 : anton 1.94 if test -r $@ && test x'$(VERSION)' = x`cat $@` ; then true ; else echo $(VERSION) > $@ ; fi
227 : anton 1.78
228 : anton 1.100 engine/version.h: version
229 : anton 1.71 echo "static char gforth_version[]=\"$(VERSION)\" ;" >$@
230 : pazsan 1.48
231 : anton 1.100 kernel/version.fs: version
232 : pazsan 1.48 $(MAKE) gforth
233 :     echo ": version-string s\" $(VERSION)\" ;" >$@
234 : pazsan 1.2
235 : pazsan 1.83 more: $(OBJECTS) $(FORTH_GEN) gforth
236 : pazsan 1.2
237 : pazsan 1.1 #from the gcc Makefile:
238 :     #"Deletion of files made during compilation.
239 :     # There are four levels of this:
240 :     # `mostlyclean', `clean', `distclean' and `realclean'.
241 :     # `mostlyclean' is useful while working on a particular type of machine.
242 :     # It deletes most, but not all, of the files made by compilation.
243 :     # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
244 :     # `clean' deletes everything made by running `make all'.
245 :     # `distclean' also deletes the files made by config.
246 :     # `realclean' also deletes everything that could be regenerated automatically."
247 :    
248 : anton 1.45 mostlyclean:
249 : anton 1.100 -$(RM) -rf *.s gforth.fi *.fi~ *.fi- kernel/version.fs *TAGS \
250 :     doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
251 :     doc/gforth.aux doc/gforth.cp doc/gforth.cps \
252 :     doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
253 :     doc/gforth.pg \
254 :     doc/gforth.toc doc/gforth.tp doc/gforth.vr html \
255 :     gforth-$(VERSION).tar.gz \
256 :     engine/version.h
257 : anton 1.45
258 :     clean: mostlyclean
259 : anton 1.100 -$(RM) -rf $(GEN) *.o engine/*.o engine/*.a
260 : pazsan 1.1
261 :     distclean: clean
262 : anton 1.100 -$(RM) machine/machine.h kernel.fi config.cache config.log \
263 :     config.status engine/config.h Makefile stamp-h
264 : pazsan 1.1
265 : anton 1.53 #realclean is useless, but dangerous, so it's commented out
266 :     #realclean: distclean
267 :     # -$(RM) $(GEN_PRECIOUS)
268 : pazsan 1.1
269 : anton 1.45 #mostlyclean, but also remove some of the stuff that is distributed
270 :     virtualclean: mostlyclean
271 :     -$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \
272 : anton 1.59 gforth-$(VERSION).tar.gz config.cache *~ */*~
273 : anton 1.45
274 : anton 1.66 #use dist targets only when srcdir=.
275 : pazsan 1.69 dist: $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST)
276 : pazsan 1.74 -$(RMTREE) gforth-$(VERSION)
277 : anton 1.21 mkdir gforth-$(VERSION)
278 : anton 1.100 $(TAR) $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) | \
279 :     (cd gforth-$(VERSION); tar xf -)
280 : pazsan 1.74 $(TAR) gforth-$(VERSION)|gzip -9 >gforth-$(VERSION).tar.gz
281 :     -$(RMTREE) gforth-$(VERSION)
282 :    
283 :     #use dist targets only when srcdir=.
284 :     dosdist: $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST)
285 :     -$(RMTREE) gforth.$(DOSVERSION)
286 :     mkdir gforth.$(DOSVERSION)
287 : anton 1.100 $(TAR) $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) | \
288 :     (cd gforth.$(DOSVERSION); tar xf -)
289 :     zip -r9 gf$(DOSVERSION)dos.zip gforth.$(DOSVERSION)/*
290 : pazsan 1.74 -$(RMTREE) gforth.$(DOSVERSION)
291 : pazsan 1.1
292 : pazsan 1.69 #A source distribution contains only the things needed to install gforth,
293 :     #without the documents.
294 :     srcdist: $(SOURCES) $(FORTH_GEN0) @KERNEL@
295 : pazsan 1.74 -$(RMTREE) gforth-$(VERSION)
296 : pazsan 1.69 mkdir gforth-$(VERSION)
297 : anton 1.100 $(TAR) $(SOURCES) $(FORTH_GEN0) @KERNEL@ | \
298 :     (cd gforth-$(VERSION); tar xf -)
299 : pazsan 1.74 $(TAR) gforth-$(VERSION)|gzip -9 >gforth-src-$(VERSION).tar.gz
300 :     -$(RMTREE) gforth-$(VERSION)
301 : pazsan 1.69
302 : anton 1.100 srconlydist: $(SOURCES)
303 :     -$(RMTREE) gforth-$(VERSION)
304 :     mkdir gforth-$(VERSION)
305 :     $(TAR) $(SOURCES) | \
306 :     (cd gforth-$(VERSION); tar xf -)
307 :     $(TAR) gforth-$(VERSION)|gzip -9 >gforth-srconly-$(VERSION).tar.gz
308 :     -$(RMTREE) gforth-$(VERSION)
309 :    
310 : pazsan 1.69 #A document distribution contains only the documents, which can be created
311 :     #with MAKE.
312 :     docdist: $(DOCDIST)
313 : pazsan 1.74 -$(RMTREE) gforth-$(VERSION)
314 : pazsan 1.69 mkdir gforth-$(VERSION)
315 : anton 1.100 $(TAR) $(DOCDIST) | (cd gforth-$(VERSION); tar xf -)
316 : pazsan 1.74 $(TAR) gforth-$(VERSION)|gzip -9 >gforth-doc-$(VERSION).tar.gz
317 :     -$(RMTREE) gforth-$(VERSION)
318 : pazsan 1.69
319 : anton 1.22 #a binary distribution contains the complete source distribution,
320 :     # the objects, the executable and the links. the objects are there for making
321 :     # make happy.
322 : anton 1.72 bindist: $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST)
323 : pazsan 1.74 -$(RMTREE) gforth-$(VERSION)
324 : anton 1.22 mkdir gforth-$(VERSION)
325 : anton 1.100 $(TAR) $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST) | (cd gforth-$(VERSION); tar xf -)
326 : anton 1.22 strip gforth-$(VERSION)/gforth
327 : pazsan 1.74 $(TAR) gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-@host@.tar.gz
328 : anton 1.22
329 :     #makes a package with only the stuff not present in the source
330 :     #package. For installation the source package is still needed!
331 :     #This is useful if you want to distribute many binary versions in
332 :     #little space (e.g., on floppy disk): Put the source package and
333 :     #all the binonly packages you are interested in on the disk. The user
334 :     #then just has to unpack the source and his favourite binonly into the
335 :     #same directory and has a full binary distribution.
336 : anton 1.72 binonlydist: $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST)
337 : pazsan 1.74 -$(RMTREE) gforth-$(VERSION)
338 : anton 1.22 mkdir gforth-$(VERSION)
339 : anton 1.100 $(TAR) $(BINONLYDIST) | (cd gforth-$(VERSION); tar xf -)
340 : anton 1.22 strip gforth-$(VERSION)/gforth
341 : pazsan 1.74 $(TAR) gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-binonly-@host@.tar.gz
342 : anton 1.22
343 :    
344 : anton 1.15 #strip gforth, because the debugging stuff is hardly useful once
345 :     # gforth manages to execute more than a few primitives
346 :    
347 : anton 1.68 #install does not depend on gforth.info, because that would require
348 :     #supplying a lot of files that can be easily generated (only info is
349 :     #hard to generate)
350 : anton 1.100 install: gforth $(FORTH_SRC) kernel.fi gforth.fi doc/gforth.1 prim gforth.TAGS installdirs
351 :     touch $(datadir)/gforth/site-forth/siteinit.fs
352 : anton 1.49 -$(RM) $(bindir)/gforth $(bindir)/gforth-$(VERSION)
353 : anton 1.15 $(INSTALL_PROGRAM) -s gforth $(bindir)
354 : anton 1.49 ln $(bindir)/gforth $(bindir)/gforth-$(VERSION)
355 : anton 1.100 -$(INSTALL_DATA) $(srcdir)/doc/gforth.1 $(man1dir)
356 : pazsan 1.83 -for i in $(srcdir)/gforth.info*; do $(INSTALL_DATA) $$i $(infodir); done
357 : anton 1.100 for i in $(FORTH_SRC) prim; do \
358 : anton 1.66 $(INSTALL_DATA) $(srcdir)/$$i $(datadir)/gforth/$(VERSION); \
359 : anton 1.9 done
360 : pazsan 1.65 $(INSTALL_DATA) kernel.fi $(libdir)/gforth/$(VERSION)
361 : anton 1.77 $(RM) gforth.fi; $(MAKE) gforth.fi #gforth.fi contains some path names
362 : pazsan 1.83 $(INSTALL_DATA) gforth.fi $(libdir)/gforth/$(VERSION)
363 : anton 1.94 sed 's:^$(srcdir)/:$(datadir)/gforth/$(VERSION)/:' gforth.TAGS >TAGS; $(INSTALL_DATA) TAGS $(datadir)/gforth/$(VERSION)
364 : anton 1.52 if test -d $(emacssitelispdir); then \
365 : anton 1.66 $(INSTALL_DATA) $(srcdir)/gforth.el $(emacssitelispdir); \
366 : pazsan 1.55 else \
367 : anton 1.66 echo ">>>>>Please install $(srcdir)/gforth.el in your .../emacs/site-lisp directory"; \
368 : anton 1.52 fi
369 : anton 1.68 echo ">>>>> Please make an entry for Gforth in your info dir file; e.g.:"; \
370 : anton 1.72 echo "* Gforth: (gforth). A fast interpreter for the Forth language."
371 : anton 1.40
372 : anton 1.66 install-strip: install
373 :    
374 : anton 1.78 installdirs: mkinstalldirs
375 :     $(srcdir)/mkinstalldirs $(bindir) $(man1dir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(datadir)/gforth/site-forth
376 :    
377 : anton 1.40 #deinstall all files specific to this version of gforth
378 :     #to uninstall version foo, type `make uninstall VERSION=foo'
379 :     uninstall:
380 :     -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)
381 : anton 1.81 @echo -e "Type\n$(RM) -rf $(bindir)/gforth $(man1dir)/gforth.1 $(infodir)/gforth.info* $(datadir)/gforth $(libdir)/gforth\nto remove Gforth completely"
382 : anton 1.40
383 : anton 1.67 check test: gforth gforth.fi
384 : anton 1.100 $(FORTH) test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs -e bye
385 :     $(FORTH) test/other.fs -e bye
386 :     $(FORTH) code.fs test/checkans.fs -e bye
387 : anton 1.21 @echo 'Expect no differences'
388 : anton 1.100 $(FORTH) -m 100000 prims2x.fs -e "s\" $(srcdir)/prim.b\"' output-c process-file bye"| diff -c - $(srcdir)/engine/prim.i
389 : anton 1.21
390 : anton 1.46 bench: gforth gforth.fi
391 : anton 1.40 @echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
392 :     time $(FORTH) siev.fs -e "main bye"
393 :     time $(FORTH) bubble.fs -e "main bye"
394 : anton 1.41 time $(FORTH) -m 160000 matrix.fs -e "main bye"
395 : anton 1.40 time $(FORTH) fib.fs -e "main bye"
396 :    
397 : anton 1.9 dvi: gforth.dvi
398 : anton 1.5
399 : anton 1.87 gforth: $(OBJECTS) $(OBJECTS0)
400 : pazsan 1.4 -$(CP) gforth gforth~
401 : anton 1.87 $(GCC) $(LDFLAGS) $(OBJECTS) $(OBJECTS0) $(LDLIBS) -o $@
402 : pazsan 1.95 @GFORTH_EXE@
403 : anton 1.87
404 :     gforth-ditc: $(OBJECTS_DITC) $(OBJECTS0)
405 :     $(GCC) $(LDFLAGS) $(OBJECTS_DITC) $(OBJECTS0) $(LDLIBS) -o $@
406 : pazsan 1.95 @GFORTHDITC_EXE@
407 : pazsan 1.1
408 : anton 1.100 kernl16l.fi-: $(KERN_SRC) kernel/version.fs mach16l.fs $(FORTH_GEN0)
409 :     $(FORTHK) -e 's" mach16l.fs"' kernel/main.fs -e "save-cross kernl16l.fi- $(bindir)/gforth-$(VERSION) bye"
410 : anton 1.87
411 : anton 1.100 kernl16b.fi-: $(KERN_SRC) kernel/version.fs mach16b.fs $(FORTH_GEN0)
412 :     $(FORTHK) -e 's" mach16b.fs"' kernel/main.fs -e "save-cross kernl16b.fi- $(bindir)/gforth-$(VERSION) bye"
413 : anton 1.87
414 : anton 1.100 kernl32l.fi-: $(KERN_SRC) kernel/version.fs mach32l.fs $(FORTH_GEN0)
415 :     $(FORTHK) -e 's" mach32l.fs"' kernel/main.fs -e "save-cross kernl32l.fi- $(bindir)/gforth-$(VERSION) bye"
416 : anton 1.87
417 : anton 1.100 kernl32b.fi-: $(KERN_SRC) kernel/version.fs mach32b.fs $(FORTH_GEN0)
418 :     $(FORTHK) -e 's" mach32b.fs"' kernel/main.fs -e "save-cross kernl32b.fi- $(bindir)/gforth-$(VERSION) bye"
419 :    
420 :     kernl64l.fi-: $(KERN_SRC) kernel/version.fs mach64l.fs $(FORTH_GEN0)
421 :     $(FORTHK) -e 's" mach64l.fs"' kernel/main.fs -e "save-cross kernl64l.fi- $(bindir)/gforth-$(VERSION) bye"
422 :    
423 :     kernl64b.fi-: $(KERN_SRC) kernel/version.fs mach64b.fs $(FORTH_GEN0)
424 :     $(FORTHK) -e 's" mach64b.fs"' kernel/main.fs -e "save-cross kernl64b.fi- $(bindir)/gforth-$(VERSION) bye"
425 :    
426 :     kernl-%.fi: arch/%/mach.fs $(KERN_SRC) kernel/version.fs $(FORTH_GEN0) \
427 :     arch/%/prim.fs arch/%/asm.fs
428 :     $(FORTHK) -e 's" $<"' kernel/main.fs -e "save-cross $@- $(bindir)/gforth-$(VERSION) bye"
429 :     if [ -f `echo $< | sed s/fs/sh/` ]; \
430 :     then sh `echo $< | sed s/fs/sh/` $@; \
431 :     else $(CP) $@- $@; \
432 :     fi
433 : pazsan 1.30
434 : anton 1.87 kernl16b.fi: $(KERNLS)
435 : anton 1.97 -$(CP) kernl16b.fi kernl16b.fi~
436 :     -$(CP) kernl16b.fi- kernl16b.fi
437 : anton 1.87
438 :     kernl16l.fi: $(KERNLS)
439 : anton 1.97 -$(CP) kernl16l.fi kernl16l.fi~
440 :     -$(CP) kernl16l.fi- kernl16l.fi
441 : anton 1.87
442 : anton 1.96 kernl32b.fi: $(KERNLS)
443 : anton 1.97 -$(CP) kernl32b.fi kernl32b.fi~
444 :     -$(CP) kernl32b.fi- kernl32b.fi
445 : anton 1.87
446 :     kernl32l.fi: $(KERNLS)
447 :     -$(CP) kernl32l.fi kernl32l.fi~
448 :     -$(CP) kernl32l.fi- kernl32l.fi
449 :    
450 :     kernl64b.fi: $(KERNLS)
451 :     -$(CP) kernl64b.fi kernl64b.fi~
452 :     -$(CP) kernl64b.fi- kernl64b.fi
453 :    
454 :     kernl64l.fi: $(KERNLS)
455 :     -$(CP) kernl64l.fi kernl64l.fi~
456 :     -$(CP) kernl64l.fi- kernl64l.fi
457 : anton 1.89
458 : anton 1.100 #kernl%.fi: kernl%.fi- $(KERNLS)
459 :     # -$(CP) $@ $@~
460 :     # -$(CP) $< $@
461 : anton 1.87
462 : anton 1.100 gforth.fi: @kernel_fi@ gforthmi gforth gforth-ditc $(GFORTH_FI_SRC)
463 :     GFORTHD="./gforth-ditc -p .$(PATHSEP)$(srcdir)" GFORTH="./gforth-ditc -p .$(PATHSEP)$(srcdir) -i kernel.fi startup.fs" $(srcdir)/gforthmi gforth.fi $(FORTHSIZES) $(FORTHKFLAGS) startup.fs
464 : anton 1.50
465 : anton 1.67 #TAGS is a GNU standard target
466 :     TAGS: gforth.TAGS
467 :     $(CP) gforth.TAGS $@
468 :    
469 : anton 1.100 gforth.TAGS: @kernel_fi@ gforth $(GFORTH_FI_SRC) prim.TAGS
470 : anton 1.66 $(FORTHK) etags.fs startup.fs -e bye
471 : anton 1.100 cat TAGS prim.TAGS kernel.TAGS >gforth.TAGS
472 : anton 1.67 rm TAGS
473 : anton 1.34
474 : anton 1.100 engine/replace.a:
475 :     cd engine; $(MAKE) replace.a
476 : pazsan 1.1
477 : anton 1.100 engine.s: engine/engine.c engine/prim.i engine/prim_lab.i machine/machine.h engine/threaded.h $(INCLUDES) engine/config.h
478 :     $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -S $(srcdir)/engine/engine.c
479 : pazsan 1.36
480 : anton 1.100 engine/engine.o: engine/engine.c engine/prim.i engine/prim_lab.i machine/machine.h engine/threaded.h $(INCLUDES) engine/config.h
481 :     $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c $(srcdir)/engine/engine.c -o $@
482 : anton 1.87
483 : anton 1.100 engine/engine-ditc.o: engine/engine.c engine/prim.i engine/prim_lab.i machine/machine.h engine/threaded.h $(INCLUDES) engine/config.h
484 :     $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -DDOUBLY_INDIRECT -o $@ -c $(srcdir)/engine/engine.c
485 : anton 1.87
486 : anton 1.100 engine/main.o: engine/main.c machine/machine.h engine/threaded.h $(INCLUDES) engine/config.h engine/version.h
487 :     $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -o $@ -c $(srcdir)/engine/main.c
488 : anton 1.9
489 : anton 1.100 engine/main-ditc.o: engine/main.c machine/machine.h engine/threaded.h $(INCLUDES) engine/config.h engine/version.h
490 :     $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -DDOUBLY_INDIRECT -o $@ -c $(srcdir)/engine/main.c
491 : pazsan 1.1
492 : anton 1.100 engine/strtoul.o: strtoul.c strtol.c
493 : pazsan 1.1
494 : anton 1.100 prim.b: prim
495 :     m4 -s $(srcdir)/prim >$@
496 :    
497 :     engine/prim.i: prim.b prims2x.fs
498 :     $(FORTHK) prims2x.fs -e "s\" prim.b\" ' output-c process-file bye" >$@-
499 : pazsan 1.93 $(CP) $@- $@
500 :     $(RM) $@-
501 : pazsan 1.1
502 : anton 1.100 engine/prim_lab.i: prim.b prims2x.fs
503 :     $(FORTHK) prims2x.fs -e "s\" prim.b\" ' output-label process-file bye" >$@-
504 : pazsan 1.93 $(CP) $@- $@
505 :     $(RM) $@-
506 : pazsan 1.1
507 : anton 1.100 kernel/aliases.fs: prim.b prims2x.fs kernel/aliases0.fs
508 :     $(CP) kernel/aliases0.fs $@-
509 :     $(FORTHK) prims2x.fs -e "s\" prim.b\" ' output-alias process-file bye" >>$@-
510 : pazsan 1.93 $(CP) $@- $@
511 :     $(RM) $@-
512 : pazsan 1.1
513 : anton 1.100 kernel/prim.fs: prim.b prims2x.fs kernel/prim0.fs
514 :     $(CP) kernel/prim0.fs kernel/prim.fs-
515 :     $(FORTHK) prims2x.fs -e "s\" prim.b\" ' output-forth process-file bye" >>$@-
516 : pazsan 1.93 $(CP) $@- $@
517 :     $(RM) $@-
518 : anton 1.27
519 : anton 1.100 prim.TAGS: prim.b prims2x.fs
520 :     $(FORTHK) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-tag process-file bye" >$@-
521 : pazsan 1.93 $(CP) $@- $@
522 :     $(RM) $@-
523 : pazsan 1.1
524 : anton 1.100 doc/doc.fd: doc/makedoc.fs $(GFORTH_FI_SRC)
525 :     $(FORTHK) -e "s\" doc/doc.fd\"" doc/makedoc.fs startup.fs code.fs -e bye
526 : anton 1.20
527 : anton 1.100 doc/crossdoc.fd: $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
528 :     $(FORTHK) -e 's" mach32l.fs"' kernel/main.fs -e bye
529 : anton 1.35
530 : anton 1.100 doc/gforth.texi: doc/gforth.ds prim.b ds2texi.fs prims2x.fs \
531 :     doc/doc.fd doc/crossdoc.fd
532 :     $(FORTHK) -m 100000 ds2texi.fs prims2x.fs -e "s\" $(srcdir)/prim.b\" ' register-doc process-file" doc/crossdoc.fd doc/doc.fd -e "s\" $(srcdir)/doc/gforth.ds\" r/o open-file throw ds2texi bye" >$@-
533 : pazsan 1.93 $(CP) $@- $@
534 :     $(RM) $@-
535 : anton 1.35
536 : anton 1.100 checkdoc: doc/gforth.ds prim.b ds2texi.fs prims2x.fs doc/doc.fd doc/crossdoc.fd answords.fs doc/gforth.texi
537 :     $(FORTHK) ds2texi.fs prims2x.fs -e "s\" $(srcdir)/prim.b\" ' register-doc process-file" doc/crossdoc.fd doc/doc.fd answords.fs -e bye
538 :     -grep unknown doc/gforth.texi
539 : anton 1.66
540 : anton 1.100 dvi: doc/gforth.dvi
541 : pazsan 1.1
542 : anton 1.100 doc/gforth.dvi doc/gforth.fns: doc/gforth.texi
543 :     cd doc; $(TEXI2DVI) gforth.texi
544 : anton 1.5
545 : anton 1.100 doc/gforth.ps: doc/gforth.dvi
546 :     $(DVI2PS) doc/gforth.dvi -o $@
547 : anton 1.40
548 : anton 1.100 info: doc/gforth.info
549 : anton 1.66
550 : anton 1.100 doc/gforth.info doc/gforth.info-*: doc/gforth.texi
551 :     -cd doc; $(MAKEINFO) gforth.texi
552 : anton 1.15
553 : anton 1.100 html: doc/gforth.texi
554 : anton 1.15 -$(RM) html/*
555 :     -mkdir html
556 : anton 1.100 cd html; $(TEXI2HTML) -menu -split_node ../doc/gforth.texi
557 : pazsan 1.63
558 : anton 1.100 doc: doc/gforth.ps html
559 : pazsan 1.1
560 : anton 1.9 # For an explanation of the following Makefile rules, see node
561 :     # `Automatic Remaking' in GNU Autoconf documentation.
562 : pazsan 1.69 $(srcdir)/configure: configure.in
563 :     cd $(srcdir) && autoconf
564 :    
565 : anton 1.51 # autoheader might not change config.h.in, so touch a stamp file.
566 : anton 1.100 config.h.in: stamp-h.in
567 :     stamp-h.in: configure.in acconfig.h
568 : pazsan 1.69 cd $(srcdir) && autoheader
569 :     echo timestamp > $(srcdir)/stamp-h.in
570 : anton 1.51
571 : anton 1.100 engine/config.h: stamp-h
572 : pazsan 1.69 stamp-h: config.h.in config.status
573 : anton 1.100 CONFIG_FILES=$@ CONFIG_HEADERS=engine/config.h ./config.status
574 : anton 1.51 echo > stamp-h
575 : pazsan 1.69 Makefile: Makefile.in config.status
576 : anton 1.100 CONFIG_FILES=$@ CONFIG_HEADERS=engine/config.h ./config.status
577 : anton 1.51
578 : pazsan 1.69 config.status: configure
579 : anton 1.51 ./config.status --recheck
580 : pazsan 1.30
581 : anton 1.51
582 :     #create files for DOS, because DOS cannot do it itself
583 : pazsan 1.30 makefile.dos: mkdosmf.sed Makefile.in
584 :     sed -f mkdosmf.sed <Makefile.in >makefile.dos
585 : anton 1.100 sed -f mkdosmf.sed <engine/Makefile.in >engine/makefile.dos
586 : pazsan 1.69
587 :     makefile.os2: mkos2mf.sed Makefile.in
588 :     sed -f mkos2mf.sed <Makefile.in >makefile.os2
589 : anton 1.100 sed -f mkos2mf.sed <engine/Makefile.in >engine/makefile.os2
590 : pazsan 1.69 echo '%.o: %.c' >>makefile.os2
591 :     echo ' $$(GCC) $$(CFLAGS) -c $$<' >>makefile.os2
592 : anton 1.100 echo '%.o: %.c' >>engine/makefile.os2
593 :     echo ' $$(GCC) $$(CFLAGS) -c $$<' >>engine/makefile.os2
594 : pazsan 1.48
595 : anton 1.100 # history is a little bit different now! JAW
596 :     #history.dos: history.fs Makefile.in
597 :     # sed -e "s,~/\.gforth-history,/gforth.his,g" <history.fs >history.dos
598 : pazsan 1.31
599 :     startup.dos: startup.fs Makefile.in
600 :     sed -e "s/\\\\ include doskey/include doskey/g" \
601 : pazsan 1.43 -e "s/include vt100key/\\\\ include vt100key/g" <startup.fs >startup.dos

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help