[gforth] / gforth / Makefile.in  

gforth: gforth/Makefile.in


1 : anton 1.38 #Makefile for Gforth
2 :    
3 : anton 1.127 #Copyright (C) 1995,1996,1997,1998 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 : jwilke 1.106 # Warning:
27 :     # For some stupid reason setting SHELL to bash does not work properly with
28 :     # DOS. If you want to use shell-specific things that must run with DOS make
29 :     # an external batch file and call it with bash (see versions.bsh).
30 :    
31 :     # ------------- gforth version
32 :    
33 : anton 1.110 VERSION = @VERSION@
34 : pazsan 1.129 DOSVERSION=`echo $(VERSION)|sed 's/\.//g'`
35 : jwilke 1.106
36 :     # ------------- System specific variables
37 :    
38 : anton 1.110 machine=@machine@
39 :     kernel_fi=@kernel_fi@
40 : pazsan 1.123 EXE=@EXE@
41 : anton 1.110
42 : jwilke 1.106 # this is the type of machine
43 :     # used to extend the include path with ./arch/$machine
44 : anton 1.110 # so we can include a machine specific
45 : jwilke 1.106 # machine.h file
46 :    
47 :     PATHSEP = @PATHSEP@
48 :    
49 :     osclass = @OSCLASS@
50 :    
51 :     # ------------- Utility programs
52 :    
53 : anton 1.9 SHELL = /bin/sh
54 : pazsan 1.4 RM = rm
55 : pazsan 1.74 RMTREE = rm -rf
56 : pazsan 1.144 CP = cp -p
57 : pazsan 1.129 MV = mv
58 : pazsan 1.74 TAR = tar cf -
59 : anton 1.9 INSTALL = @INSTALL@
60 :     INSTALL_PROGRAM = @INSTALL_PROGRAM@
61 :     INSTALL_DATA = @INSTALL_DATA@
62 :     LN_S = @LN_S@
63 : pazsan 1.48 GCC = @CC@
64 : anton 1.23 CC = $(GCC)
65 : jwilke 1.155 FORTHPATH = ~+$(PATHSEP)$(libdir)/gforth/site-forth$(PATHSEP)$(siteforthdir)$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)
66 : anton 1.72 FORTHSIZES = @FORTHSIZES@
67 : anton 1.143 FORTH_ARGS = --die-on-signal -p $(FORTHPATH)$(PATHSEP)$(srcdir)
68 :     ENGINE = ./gforth
69 :     FORTH = $(ENGINE) $(FORTH_ARGS)
70 :     ENGINE_FAST = $(ENGINE)-fast
71 :     FORTH_FAST = $(ENGINE_FAST) $(FORTH_ARGS)
72 : pazsan 1.140 FORTHKFLAGS= --die-on-signal -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)" -i $(kernel_fi)
73 : anton 1.152 FORTHK = $(ENGINE) $(FORTHKFLAGS)
74 :     FORTHP = $(ENGINE) --die-on-signal -i ./$(kernel_fi)
75 : anton 1.22 STRIP = strip
76 : anton 1.32 TEXI2DVI = texi2dvi
77 : anton 1.114 DVI2PS = dvips -Z
78 : anton 1.99 #you can get texi2html from http://wwwcn.cern.ch/dci/texi2html/
79 : anton 1.15 TEXI2HTML = texi2html
80 : anton 1.11 MAKEINFO = makeinfo
81 : jwilke 1.106
82 :     # ------------- Compiler Flags
83 :    
84 : anton 1.9 XCFLAGS = @CFLAGS@
85 :     XDEFINES = @DEFS@
86 : anton 1.12 SWITCHES = $(XCFLAGS) $(XDEFINES) #-DNDEBUG #turn off assertions
87 : pazsan 1.48 ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves
88 : pazsan 1.30 DEBUGFLAG = @DEBUGFLAG@
89 : pazsan 1.154 CFLAGS = $(DEBUGFLAG) -I$(srcdir)/engine -I$(srcdir)/arch/$(machine) -O3 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(FORTHPATH)\"
90 : pazsan 1.1
91 :     #John Wavrik should use -Xlinker -N to get a writable text (executable)
92 : pazsan 1.30 XLDFLAGS = @LDFLAGS@
93 : anton 1.117 LDFLAGS = $(DEBUGFLAG) $(XLDFLAGS)
94 : anton 1.9 LDLIBS = @LIBS@
95 :    
96 : jwilke 1.106 # ------------ Install Directorys
97 :    
98 : anton 1.52 VPATH = @srcdir@
99 : anton 1.9 prefix = @prefix@
100 :     exec_prefix = @exec_prefix@
101 :     srcdir = @srcdir@
102 :     bindir = $(exec_prefix)/bin
103 :     #read-only architecture-independent files
104 :     datadir = $(prefix)/share
105 :     #read-only architecture-dependent non-ascii files
106 :     libdir = $(prefix)/lib
107 :     infodir = $(prefix)/info
108 : anton 1.52 mandir = $(prefix)/man
109 :     man1dir= $(mandir)/man1
110 :     man1ext= .1
111 :     #older emacses have their site-lisp in $(libdir)/emacs/
112 : anton 1.110 emacssitelispdir=@lispdir@
113 : anton 1.141 siteforthdir=$(datadir)/gforth/site-forth
114 : pazsan 1.1
115 : pazsan 1.124 CVSDIRS = CVS engine/CVS kernel/CVS doc/CVS asm/CVS ec/CVS test/CVS \
116 :     compat/CVS \
117 :     arch/CVS arch/generic/CVS arch/m68k/CVS arch/mips/CVS \
118 :     arch/386/CVS arch/hppa/CVS arch/sparc/CVS arch/power/CVS \
119 :     arch/alpha/CVS arch/4stack/CVS arch/misc/CVS arch/6502/CVS \
120 :     arch/8086/CVS arch/avr/CVS arch/c165/CVS arch/h8/CVS \
121 :     arch/shboom/CVS \
122 :    
123 : anton 1.135 INCLUDES = engine/forth.h engine/threaded.h engine/io.h
124 :    
125 : anton 1.52 KERN_SRC = \
126 : jwilke 1.155 mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
127 :     machpc.fs \
128 : anton 1.100 kernel/aliases0.fs \
129 :     kernel/aliases.fs \
130 :     kernel/args.fs \
131 : anton 1.118 chains.fs \
132 : anton 1.100 kernel/cond.fs \
133 :     kernel/cond-old.fs \
134 : anton 1.52 cross.fs \
135 : anton 1.100 kernel/errore.fs \
136 :     kernel/files.fs \
137 :     kernel/require.fs \
138 :     kernel/paths.fs \
139 :     kernel/kernel.fs \
140 :     kernel/main.fs \
141 :     kernel/prim0.fs \
142 :     search.fs \
143 : jwilke 1.156 kernel/quotes.fs \
144 : anton 1.100 kernel/tools.fs \
145 :     kernel/toolsext.fs \
146 :     kernel/vars.fs \
147 :     kernel/accept.fs \
148 :     kernel/basics.fs \
149 : pazsan 1.107 kernel/int.fs \
150 :     kernel/comp.fs \
151 : anton 1.100 kernel/io.fs \
152 :     kernel/license.fs \
153 :     kernel/nio.fs \
154 : pazsan 1.108 kernel/saccept.fs \
155 :     kernel/doers.fs \
156 : jwilke 1.157 kernel/getdoers.fs \
157 :     kernel/pass.fs
158 : anton 1.52
159 : pazsan 1.107 EC_SRC = \
160 : anton 1.118 asm/README \
161 : pazsan 1.107 asm/bitmask.fs \
162 :     asm/numref.fs \
163 :     asm/basic.fs \
164 :     asm/generic.fs \
165 :     asm/target.fs \
166 : anton 1.118 ec/README \
167 : pazsan 1.107 ec/mirror.fs \
168 :     ec/shex.fs \
169 :     ec/builttag.fs \
170 :     ec/dotx.fs \
171 :     ec/nesting.fs
172 :    
173 : anton 1.52 GFORTH_FI_SRC = \
174 :     assert.fs \
175 : pazsan 1.145 backtrace.fs \
176 : anton 1.100 blocked.fb \
177 : anton 1.52 blocks.fs \
178 :     bufio.fs \
179 :     debug.fs \
180 : anton 1.100 debugs.fs \
181 :     savesys.fs \
182 : anton 1.52 environ.fs \
183 : pazsan 1.82 errors.fs \
184 :     extend.fs \
185 : anton 1.52 float.fs \
186 :     glocals.fs \
187 :     hash.fs \
188 :     history.fs \
189 : anton 1.64 intcomp.fs \
190 : pazsan 1.101 locals.fs \
191 : anton 1.52 look.fs \
192 : anton 1.100 search.fs \
193 : anton 1.52 see.fs \
194 : pazsan 1.85 see-ext.fs \
195 : anton 1.52 source.fs \
196 :     startup.fs \
197 :     struct.fs \
198 :     stuff.fs \
199 : pazsan 1.60 tasker.fs \
200 : anton 1.52 termsize.fs \
201 :     vt100.fs \
202 :     vt100key.fs \
203 : pazsan 1.101 wordinfo.fs \
204 :     lib.fs \
205 :     sieve.fs \
206 :     add.fs
207 : anton 1.52
208 : pazsan 1.107 FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_SRC) $(EC_SRC) \
209 : anton 1.75 ans-report.fs ansi.fs answords.fs \
210 : anton 1.100 code.fs colorize.fs comp-i.fs \
211 : anton 1.52 doskey.fs ds2texi.fs \
212 : pazsan 1.124 envos.fs envos.dos envos.os2 etags.fs filedump.fs fi2c.fs \
213 : anton 1.52 glosgen.fs gray.fs \
214 : anton 1.100 doc/makedoc.fs \
215 : jwilke 1.155 more.fs other.fs prims2x.fs random.fs \
216 : anton 1.141 table.fs \
217 : anton 1.52 tt.fs sokoban.fs \
218 : anton 1.118 unbuffered.fs wordsets.fs \
219 : anton 1.100 test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs \
220 : pazsan 1.124 test/other.fs test/checkans.fs \
221 : pazsan 1.65 bubble.fs siev.fs matrix.fs fib.fs \
222 : crook 1.151 oof.fs oofsampl.fs objects.fs objexamp.fs mini-oof.fs moof-exm.fs \
223 :     moofglos.fs
224 : pazsan 1.1
225 : anton 1.131 COMPAT = compat/README \
226 :     compat/anslocal.fs \
227 :     compat/assert.fs \
228 :     compat/control.fs \
229 :     compat/defer.fs \
230 :     compat/exception.fs \
231 :     compat/loops.fs \
232 :     compat/required.fs \
233 :     compat/struct.fs \
234 :     compat/vocabulary.fs
235 : anton 1.100
236 : anton 1.111 GFORTH_TEXI = doc/gforth.texi doc/version.texi
237 :    
238 : anton 1.100 ALLSUBDIRS = engine
239 :    
240 : anton 1.135 ARCHS = \
241 :     arch/generic/machine.h \
242 :     arch/m68k/machine.h \
243 :     arch/mips/machine.h \
244 :     arch/386/machine.h \
245 :     arch/hppa/machine.h \
246 :     arch/hppa/cache.c \
247 :     arch/sparc/machine.h \
248 :     arch/power/machine.h \
249 :     arch/power/_sync_cache_range.c \
250 :     arch/alpha/machine.h \
251 :     arch/4stack/README \
252 :     arch/4stack/asm.fs \
253 :     arch/4stack/mach.fs \
254 :     arch/4stack/prim.fs \
255 :     arch/4stack/mach.sh \
256 :     arch/4stack/relocate.fs \
257 :     arch/misc/README \
258 :     arch/misc/asm.fs \
259 :     arch/misc/mach.fs \
260 :     arch/misc/prim.fs \
261 :     arch/misc/sim.fs \
262 :     arch/misc/sokoban.fs \
263 :     arch/misc/tt.fs \
264 :     arch/6502/asm.fs \
265 :     arch/6502/prim.fs \
266 :     arch/6502/mach.fs \
267 :     arch/6502/zero.fs \
268 :     arch/6502/softuart.fs \
269 :     arch/6502/cold.fs \
270 :     arch/8086/asm.fs \
271 :     arch/8086/mach.fs \
272 :     arch/8086/mach.sh \
273 :     arch/8086/prim.fs \
274 :     arch/avr/asm.fs \
275 :     arch/c165/asm.fs \
276 :     arch/c165/mach.fs \
277 :     arch/c165/prim.fs \
278 :     arch/h8/asm.fs \
279 :     arch/shboom/asm.fs \
280 :     arch/shboom/compiler.fs \
281 :     arch/shboom/dis.fs \
282 :     arch/shboom/mach.fs \
283 :     arch/shboom/prim.fs \
284 :     arch/shboom/dis2.fs \
285 :     arch/shboom/sh.p \
286 :     arch/shboom/doers.fs
287 :    
288 :     SOURCES = $(CVSDIRS) compat Makefile.in Makedist.in engine/Makefile.in gforthmi.in \
289 :     configure.in configure config.sub config.guess elisp-comp missing \
290 :     acconfig.h acinclude.m4 engine/config.h.in stamp-h.in \
291 :     install-sh INSTALL INSTALL.BINDIST NEWS README ToDo BUGS model \
292 :     COPYING AUTHORS ChangeLog Benchres aclocal.m4 \
293 :     doc/gforth.ds doc/texinfo.tex doc/gforth.1 doc/version.texi.in \
294 :     gforth.el \
295 :     prim engine/engine.c engine/main.c engine/io.c engine/memcmpc.c \
296 : anton 1.149 engine/signals.c $(ARCHS) \
297 : anton 1.135 engine/getopt.c engine/getopt1.c engine/getopt.h engine/select.c \
298 :     engine/ecvt.c engine/memcmp.c engine/strtol.c engine/strtoul.c \
299 :     engine/ansidecl.h engine/memmove.c \
300 :     engine/pow10.c engine/atanh.c engine/cleanalign.c \
301 :     engine/strerror.c engine/strsignal.c engine/dblsub.c \
302 :     INSTALL.DOS makefile.dos engine/makefile.dos mkdosmf.sed config.bat \
303 : anton 1.141 dosconf.h gforthmi.bat mkinstalldirs siteinit.fs \
304 : anton 1.135 versions.bsh \
305 :     configure.cmd mkos2mf.sed os2conf.h makefile.os2 engine/makefile.os2 \
306 :     gforthmi.cmd glosgen.glo doc/glossaries.doc \
307 :     $(INCLUDES) $(FORTH_SRC) $(COMPAT) \
308 : anton 1.158 timings.sc \
309 :     test/coretest.out test/checkans.out
310 : anton 1.135
311 : anton 1.5 RCS_FILES = ToDo model high-level
312 : pazsan 1.1
313 : anton 1.143 GEN = gforth$(EXE) gforth-ditc$(EXE) gforth-fast$(EXE) kernel/version.fs
314 : pazsan 1.1
315 :     # things that need a working forth system to be generated
316 : anton 1.100 FORTH_GEN0 = prim.b engine/prim.i engine/prim_lab.i kernel/aliases.fs kernel/prim.fs
317 : pazsan 1.65 FORTH_GEN = $(FORTH_GEN0) @KERNEL@ gforth.fi
318 : pazsan 1.1 # this is used for antidependences,
319 : pazsan 1.65 FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@
320 : anton 1.5
321 : anton 1.38 #distributed documentation
322 : anton 1.139 DOCDIST = doc/gforth.info doc/gforth.info-* doc/gforth.ps
323 : anton 1.5
324 : pazsan 1.48 KERNLS = kernl16b.fi- kernl16l.fi- \
325 :     kernl32b.fi- kernl32l.fi- \
326 :     kernl64b.fi- kernl64l.fi-
327 : pazsan 1.30
328 : pazsan 1.134 GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) doc/gforth.texi doc/gforth.dvi doc/gforth.ps Makefile Makedist engine/Makefile configure
329 : pazsan 1.1
330 : anton 1.9 #standards.info recommends this:
331 :     .SUFFIXES:
332 :     .SUFFIXES: .c .o
333 :    
334 : jwilke 1.106
335 : anton 1.100 all: kernel/version.fs more
336 : pazsan 1.1
337 : jwilke 1.106 # use this dependency for phony targets just as mostlyclean,...
338 :     FORCE: ;
339 :    
340 : anton 1.78 #this rule avoids remaking everything after minor changes in Makefile.in
341 : anton 1.100 version: Makefile.in
342 : anton 1.94 if test -r $@ && test x'$(VERSION)' = x`cat $@` ; then true ; else echo $(VERSION) > $@ ; fi
343 : anton 1.78
344 : jwilke 1.106 # With dos we use normal dos echo
345 :     # we cannot pipe the output to engine/version.h directly because
346 :     # of the "/ and \" problem. Copying works because we use the
347 :     # shell und file utilities.
348 :    
349 : anton 1.100 kernel/version.fs: version
350 : pazsan 1.123 $(MAKE) gforth$(EXE)
351 : pazsan 1.129 echo ": version-string s\" $(VERSION)\" ;" > kernel/version.fs
352 : pazsan 1.2
353 : anton 1.149 more: engine $(FORTH_GEN) $(GEN)
354 : pazsan 1.2
355 : pazsan 1.1 #from the gcc Makefile:
356 :     #"Deletion of files made during compilation.
357 :     # There are four levels of this:
358 :     # `mostlyclean', `clean', `distclean' and `realclean'.
359 :     # `mostlyclean' is useful while working on a particular type of machine.
360 :     # It deletes most, but not all, of the files made by compilation.
361 :     # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
362 :     # `clean' deletes everything made by running `make all'.
363 :     # `distclean' also deletes the files made by config.
364 :     # `realclean' also deletes everything that could be regenerated automatically."
365 :    
366 : jwilke 1.106 mostlyclean: FORCE
367 : anton 1.118 -$(RM) -rf engine/*.s gforth.fi *.fi~ *.fi- kernel/version.fs \
368 :     *TAGS gforth~ \
369 : anton 1.100 doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
370 :     doc/gforth.aux doc/gforth.cp doc/gforth.cps \
371 :     doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
372 :     doc/gforth.pg \
373 :     doc/gforth.toc doc/gforth.tp doc/gforth.vr html \
374 : anton 1.110 gforth-$(VERSION).tar.gz
375 : anton 1.45
376 : crook 1.146 # Just the stuff needed to rebuild the documentation nac03feb1999
377 :     docclean: FORCE
378 :     -$(RM) -rf doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
379 :     doc/gforth.aux doc/gforth.cp doc/gforth.cps \
380 :     doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
381 :     doc/gforth.pg \
382 :     doc/gforth.toc doc/gforth.tp doc/gforth.vr html
383 :    
384 : anton 1.45 clean: mostlyclean
385 : anton 1.143 -$(RM) -rf $(GEN) engine/gforth$(EXE) \
386 :     engine/gforth-fast$(EXE) engine/gforth-ditc$(EXE) \
387 : anton 1.119 *.o engine/*.o arch/*/*.o version
388 : pazsan 1.1
389 :     distclean: clean
390 : anton 1.118 -$(RM) config.cache config.log config.status \
391 : pazsan 1.134 engine/config.h Makefile Makedist engine/Makefile \
392 : anton 1.118 stamp-h engine/stamp-h \
393 : anton 1.131 doc/version.texi gforthmi
394 : pazsan 1.1
395 : anton 1.53 #realclean is useless, but dangerous, so it's commented out
396 :     #realclean: distclean
397 :     # -$(RM) $(GEN_PRECIOUS)
398 : pazsan 1.1
399 : anton 1.45 #mostlyclean, but also remove some of the stuff that is distributed
400 :     virtualclean: mostlyclean
401 :     -$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \
402 : anton 1.59 gforth-$(VERSION).tar.gz config.cache *~ */*~
403 : anton 1.45
404 : anton 1.135 #Some makes (Ultrix, SunOS, IRIX) are so broken, they cannot read the
405 :     #Makefile if it contains our dist rules. Therefore we have put these
406 :     #rules in Makedist (you can use them with GNU make on these systems).
407 : anton 1.136 dist: Makedist FORCE
408 : anton 1.135 $(MAKE) -f Makedist d$@
409 : pazsan 1.134
410 : anton 1.136 dosdist: Makedist FORCE
411 : anton 1.135 $(MAKE) -f Makedist d$@
412 : pazsan 1.134
413 : anton 1.136 srcdist: Makedist FORCE
414 : anton 1.135 $(MAKE) -f Makedist d$@
415 : pazsan 1.134
416 : anton 1.136 srconlydist: Makedist FORCE
417 : anton 1.135 $(MAKE) -f Makedist d$@
418 : pazsan 1.134
419 : anton 1.136 docdist: Makedist FORCE
420 : anton 1.135 $(MAKE) -f Makedist d$@
421 : pazsan 1.134
422 : anton 1.136 htmldist: Makedist FORCE
423 : anton 1.135 $(MAKE) -f Makedist d$@
424 : pazsan 1.1
425 : anton 1.136 bindist: Makedist FORCE
426 : anton 1.135 $(MAKE) -f Makedist d$@
427 :    
428 : anton 1.136 binonlydist: Makedist FORCE
429 : anton 1.135 $(MAKE) -f Makedist d$@
430 : anton 1.22
431 :    
432 : anton 1.15 #strip gforth, because the debugging stuff is hardly useful once
433 :     # gforth manages to execute more than a few primitives
434 :    
435 : anton 1.68 #install does not depend on gforth.info, because that would require
436 :     #supplying a lot of files that can be easily generated (only info is
437 :     #hard to generate)
438 : anton 1.131 install: gforth$(EXE) $(FORTH_SRC) $(kernel_fi) gforth.fi gforthmi doc/gforth.1 prim install.TAGS installdirs
439 : anton 1.141 touch $(siteforthdir)/siteinit.fs
440 : pazsan 1.133 -$(RM) $(bindir)/gforth$(EXE) $(bindir)/gforth-$(VERSION)$(EXE) $(bindir)/gforthmi
441 : anton 1.147 -$(RM) $(bindir)/gforth-fast$(EXE) $(bindir)/gforth-fast-$(VERSION)$(EXE)
442 : anton 1.131 $(INSTALL_PROGRAM) -s gforth$(EXE) $(bindir)/gforth-$(VERSION)$(EXE)
443 : anton 1.150 (cd $(bindir) && $(LN_S) gforth-$(VERSION)$(EXE) gforth$(EXE))
444 : anton 1.143 $(INSTALL_PROGRAM) -s gforth-fast$(EXE) $(bindir)/gforth-fast-$(VERSION)$(EXE)
445 : anton 1.150 (cd $(bindir) && $(LN_S) gforth-fast-$(VERSION)$(EXE) gforth-fast$(EXE))
446 : anton 1.131 $(INSTALL_PROGRAM) gforthmi $(bindir)/gforthmi-$(VERSION)
447 : anton 1.147 $(INSTALL_PROGRAM) gforth-ditc $(libdir)/gforth/$(VERSION)
448 : anton 1.150 (cd $(bindir) && $(LN_S) gforthmi-$(VERSION) gforthmi)
449 : anton 1.100 -$(INSTALL_DATA) $(srcdir)/doc/gforth.1 $(man1dir)
450 : anton 1.131 -for i in $(srcdir)/doc/gforth.info*; do $(INSTALL_DATA) $$i $(infodir); done
451 :     for i in $(FORTH_SRC) $(COMPAT) prim; do \
452 :     $(INSTALL_DATA) $(srcdir)/$$i $(datadir)/gforth/$(VERSION)/$$i; \
453 : anton 1.9 done
454 : anton 1.110 $(INSTALL_DATA) $(kernel_fi) $(datadir)/gforth/$(VERSION)
455 : anton 1.132 $(RM) gforth.fi
456 : anton 1.141 GFORTHD="./gforth-ditc -p$(libdir)/gforth/site-forth$(PATHSEP)$(siteforthdir)$(PATHSEP)$(datadir)/gforth/$(VERSION) -i $(kernel_fi)" GFORTH="./gforth-ditc --die-on-signal -i $(kernel_fi) startup.fs" ./gforthmi gforth.fi $(FORTHSIZES) startup.fs #gforth.fi contains some path names
457 : pazsan 1.83 $(INSTALL_DATA) gforth.fi $(libdir)/gforth/$(VERSION)
458 : anton 1.131 $(INSTALL_DATA) install.TAGS $(datadir)/gforth/$(VERSION)/TAGS
459 : pazsan 1.137 @if test -d "$(emacssitelispdir)"; then \
460 : anton 1.66 $(INSTALL_DATA) $(srcdir)/gforth.el $(emacssitelispdir); \
461 : pazsan 1.55 else \
462 : anton 1.66 echo ">>>>>Please install $(srcdir)/gforth.el in your .../emacs/site-lisp directory"; \
463 : anton 1.52 fi
464 : pazsan 1.108 @echo ">>>>> Please make an entry for Gforth in your info dir file; e.g.:"; \
465 : anton 1.72 echo "* Gforth: (gforth). A fast interpreter for the Forth language."
466 : anton 1.40
467 : anton 1.66 install-strip: install
468 :    
469 : anton 1.78 installdirs: mkinstalldirs
470 : anton 1.141 for i in $(bindir) $(man1dir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(siteforthdir); do \
471 :     $(srcdir)/mkinstalldirs $$i; \
472 :     done
473 : anton 1.131 for i in $(CVSDIRS); do \
474 :     $(srcdir)/mkinstalldirs $(datadir)/gforth/$(VERSION)/`dirname $$i`; \
475 :     done
476 :     $(RM) -rf $(datadir)/gforth/$(VERSION)/arch $(datadir)/gforth/$(VERSION)/engine
477 : anton 1.78
478 : anton 1.40 #deinstall all files specific to this version of gforth
479 :     #to uninstall version foo, type `make uninstall VERSION=foo'
480 : jwilke 1.106 uninstall: FORCE
481 : anton 1.131 -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)$(EXE) $(bindir)/gforthmi-$(VERSION)
482 :     @echo -e "To remove Gforth completely, type\n$(RM) -rf $(bindir)/gforth$(EXE) $(bindir)/gforthmi $(man1dir)/gforth.1 $(infodir)/gforth.info* $(datadir)/gforth $(libdir)/gforth"
483 : anton 1.40
484 : pazsan 1.123 check test: gforth$(EXE) gforth.fi
485 : anton 1.158 $(FORTH) test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs -e bye | diff -c - $(srcdir)/test/coretest.out
486 : anton 1.100 $(FORTH) test/other.fs -e bye
487 : anton 1.158 $(FORTH) code.fs test/checkans.fs -e bye | diff -c - $(srcdir)/test/checkans.out
488 : jwilke 1.153 $(FORTHK) -m 100000 prims2x.fs -e \
489 :     "c-flag on s\" $(srcdir)/prim.b\" ' output-c process-file bye"| \
490 :     diff -c - $(srcdir)/engine/prim.i
491 : anton 1.21
492 : anton 1.143 bench: gforth-fast$(EXE) gforth.fi
493 : anton 1.40 @echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
494 : anton 1.143 time $(FORTH_FAST) siev.fs -e "main bye"
495 :     time $(FORTH_FAST) bubble.fs -e "main bye"
496 :     time $(FORTH_FAST) -m 160000 matrix.fs -e "main bye"
497 :     time $(FORTH_FAST) fib.fs -e "main bye"
498 : anton 1.40
499 : jwilke 1.106 # ------------- Make forth images
500 : anton 1.87
501 : anton 1.150 # How to make new images:
502 : jwilke 1.106 # 1. Produce an image called kernlXYZ.fi-
503 :     # the original kernel.fi is not touched because it's needed for creation
504 :     # 2. copy old kernlXYZ.fi to kernlXYZ.fi~
505 :     # that's a backup copy in case the new kernels don't work
506 :     # 3. copy new kernels to kernlXYZ.fi
507 :     # these are the ones we want to use now
508 : pazsan 1.1
509 : anton 1.100 kernl16l.fi-: $(KERN_SRC) kernel/version.fs mach16l.fs $(FORTH_GEN0)
510 : jwilke 1.155 $(FORTHK) -e 's" mach16l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16l.fi- $(bindir)/gforth-$(VERSION) bye"
511 : anton 1.87
512 : anton 1.100 kernl16b.fi-: $(KERN_SRC) kernel/version.fs mach16b.fs $(FORTH_GEN0)
513 : anton 1.132 $(FORTHK) -e 's" mach16b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16b.fi- $(bindir)/gforth-$(VERSION) bye"
514 : anton 1.87
515 : anton 1.100 kernl32l.fi-: $(KERN_SRC) kernel/version.fs mach32l.fs $(FORTH_GEN0)
516 : anton 1.132 $(FORTHK) -e 's" mach32l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32l.fi- $(bindir)/gforth-$(VERSION) bye"
517 : anton 1.87
518 : anton 1.100 kernl32b.fi-: $(KERN_SRC) kernel/version.fs mach32b.fs $(FORTH_GEN0)
519 : anton 1.132 $(FORTHK) -e 's" mach32b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32b.fi- $(bindir)/gforth-$(VERSION) bye"
520 : anton 1.100
521 :     kernl64l.fi-: $(KERN_SRC) kernel/version.fs mach64l.fs $(FORTH_GEN0)
522 : anton 1.132 $(FORTHK) -e 's" mach64l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64l.fi- $(bindir)/gforth-$(VERSION) bye"
523 : anton 1.100
524 :     kernl64b.fi-: $(KERN_SRC) kernel/version.fs mach64b.fs $(FORTH_GEN0)
525 : anton 1.132 $(FORTHK) -e 's" mach64b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64b.fi- $(bindir)/gforth-$(VERSION) bye"
526 : anton 1.100
527 : pazsan 1.122 kernl-%.fi: arch/%/mach.fs \
528 :     $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
529 : anton 1.132 $(FORTHK) -e 's" $<"' $(srcdir)/kernel/main.fs -e "save-cross $@- $(bindir)/gforth-$(VERSION) bye"
530 : anton 1.100 if [ -f `echo $< | sed s/fs/sh/` ]; \
531 :     then sh `echo $< | sed s/fs/sh/` $@; \
532 :     else $(CP) $@- $@; \
533 :     fi
534 : pazsan 1.30
535 : pazsan 1.122 arch/%/mach.fs: arch/%/prim.fs
536 :    
537 :     arch/%/prim.fs: arch/%/asm.fs
538 :    
539 : anton 1.87 kernl16b.fi: $(KERNLS)
540 : anton 1.97 -$(CP) kernl16b.fi kernl16b.fi~
541 :     -$(CP) kernl16b.fi- kernl16b.fi
542 : anton 1.87
543 :     kernl16l.fi: $(KERNLS)
544 : anton 1.97 -$(CP) kernl16l.fi kernl16l.fi~
545 :     -$(CP) kernl16l.fi- kernl16l.fi
546 : anton 1.87
547 : anton 1.96 kernl32b.fi: $(KERNLS)
548 : anton 1.97 -$(CP) kernl32b.fi kernl32b.fi~
549 :     -$(CP) kernl32b.fi- kernl32b.fi
550 : anton 1.87
551 :     kernl32l.fi: $(KERNLS)
552 :     -$(CP) kernl32l.fi kernl32l.fi~
553 :     -$(CP) kernl32l.fi- kernl32l.fi
554 :    
555 :     kernl64b.fi: $(KERNLS)
556 :     -$(CP) kernl64b.fi kernl64b.fi~
557 :     -$(CP) kernl64b.fi- kernl64b.fi
558 :    
559 :     kernl64l.fi: $(KERNLS)
560 :     -$(CP) kernl64l.fi kernl64l.fi~
561 :     -$(CP) kernl64l.fi- kernl64l.fi
562 : anton 1.89
563 : anton 1.100 #kernl%.fi: kernl%.fi- $(KERNLS)
564 :     # -$(CP) $@ $@~
565 :     # -$(CP) $< $@
566 : anton 1.87
567 : pazsan 1.123 gforth.fi: $(kernel_fi) gforthmi gforth$(EXE) gforth-ditc$(EXE) $(GFORTH_FI_SRC)
568 : anton 1.131 GFORTHD="./gforth-ditc -p .$(PATHSEP)$(srcdir)" GFORTH="./gforth-ditc -p .$(PATHSEP)$(srcdir) -i $(kernel_fi) startup.fs" ./gforthmi gforth.fi $(FORTHSIZES) $(FORTHKFLAGS) startup.fs
569 : anton 1.9
570 : jwilke 1.106 # ------------- Make c-engine
571 : pazsan 1.1
572 : anton 1.100 prim.b: prim
573 :     m4 -s $(srcdir)/prim >$@
574 :    
575 :     engine/prim.i: prim.b prims2x.fs
576 : jwilke 1.153 $(FORTHK) prims2x.fs -e "c-flag on s\" prim.b\" ' output-c process-file bye" >$@-
577 : pazsan 1.93 $(CP) $@- $@
578 :     $(RM) $@-
579 : pazsan 1.1
580 : anton 1.100 engine/prim_lab.i: prim.b prims2x.fs
581 : jwilke 1.153 $(FORTHK) prims2x.fs -e "c-flag on s\" prim.b\" ' output-label process-file bye" >$@-
582 : pazsan 1.93 $(CP) $@- $@
583 :     $(RM) $@-
584 : pazsan 1.1
585 : anton 1.100 kernel/aliases.fs: prim.b prims2x.fs kernel/aliases0.fs
586 :     $(CP) kernel/aliases0.fs $@-
587 : jwilke 1.153 $(FORTHK) prims2x.fs -e "forth-flag on s\" prim.b\" ' output-alias process-file bye" >>$@-
588 : pazsan 1.93 $(CP) $@- $@
589 :     $(RM) $@-
590 : pazsan 1.1
591 : anton 1.100 kernel/prim.fs: prim.b prims2x.fs kernel/prim0.fs
592 :     $(CP) kernel/prim0.fs kernel/prim.fs-
593 : jwilke 1.153 $(FORTHK) prims2x.fs -e "forth-flag on s\" prim.b\" ' output-forth process-file bye" >>$@-
594 : pazsan 1.93 $(CP) $@- $@
595 :     $(RM) $@-
596 : anton 1.27
597 : pazsan 1.130 gforth$(EXE): engines
598 : pazsan 1.123 -$(CP) gforth$(EXE) gforth~
599 : anton 1.110 $(CP) engine/$@ $@
600 : jwilke 1.106 @GFORTH_EXE@
601 :    
602 : anton 1.143 gforth-fast$(EXE): engines
603 :     $(CP) engine/$@ $@
604 :     @GFORTHFAST_EXE@
605 :    
606 : pazsan 1.130 gforth-ditc$(EXE): engines
607 : anton 1.110 $(CP) engine/$@ $@
608 : jwilke 1.106 @GFORTHDITC_EXE@
609 : pazsan 1.130
610 : anton 1.142 engines: FORCE engine/Makefile
611 : anton 1.143 cd engine && $(MAKE) gforth$(EXE) gforth-fast$(EXE) gforth-ditc$(EXE)
612 : pazsan 1.107
613 :     # ------------- additional C primitives
614 :    
615 :     %.c: %.pri prim2cl.fs
616 :     $(FORTHK) prim2cl.fs -e "file $< altogether bye" >$@
617 :    
618 :     %.so: %.c
619 :     $(GCC) -shared $(CFLAGS) $< -o $@
620 : jwilke 1.106
621 :     # ------------- Make Documentation
622 :    
623 :     #TAGS is a GNU standard target
624 :     TAGS: gforth.TAGS
625 :     $(CP) gforth.TAGS $@
626 :    
627 : anton 1.131 install.TAGS: gforth.TAGS
628 :     sed 's:^\$(srcdir)/:$(datadir)/gforth/$(VERSION)/:' gforth.TAGS >install.TAGS
629 :    
630 : jwilke 1.106 gforth.TAGS: @kernel_fi@ gforth $(GFORTH_FI_SRC) prim.TAGS
631 :     $(FORTHK) etags.fs startup.fs -e bye
632 :     cat TAGS prim.TAGS kernel.TAGS >gforth.TAGS
633 :     rm TAGS
634 :    
635 : anton 1.100 prim.TAGS: prim.b prims2x.fs
636 :     $(FORTHK) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-tag process-file bye" >$@-
637 : pazsan 1.93 $(CP) $@- $@
638 :     $(RM) $@-
639 : pazsan 1.1
640 : crook 1.151 doc/doc.fd: doc/makedoc.fs $(GFORTH_FI_SRC) code.fs objects.fs oof.fs moofglos.fs
641 :     $(FORTHK) -e "s\" doc/doc.fd\"" doc/makedoc.fs startup.fs code.fs objects.fs oof.fs moofglos.fs -e bye
642 : anton 1.20
643 : anton 1.100 doc/crossdoc.fd: $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
644 :     $(FORTHK) -e 's" mach32l.fs"' kernel/main.fs -e bye
645 : anton 1.35
646 : anton 1.100 doc/gforth.texi: doc/gforth.ds prim.b ds2texi.fs prims2x.fs \
647 :     doc/doc.fd doc/crossdoc.fd
648 :     $(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" >$@-
649 : pazsan 1.93 $(CP) $@- $@
650 :     $(RM) $@-
651 : anton 1.35
652 : anton 1.100 checkdoc: doc/gforth.ds prim.b ds2texi.fs prims2x.fs doc/doc.fd doc/crossdoc.fd answords.fs doc/gforth.texi
653 : anton 1.119 $(FORTHK) -m 1M ds2texi.fs prims2x.fs -e "s\" $(srcdir)/prim.b\" ' register-doc process-file" doc/crossdoc.fd doc/doc.fd answords.fs -e bye
654 : anton 1.100 -grep unknown doc/gforth.texi
655 : anton 1.66
656 : anton 1.100 dvi: doc/gforth.dvi
657 : pazsan 1.1
658 : anton 1.111 doc/gforth.dvi doc/gforth.fns: $(GFORTH_TEXI)
659 : anton 1.100 cd doc; $(TEXI2DVI) gforth.texi
660 : anton 1.5
661 : anton 1.100 doc/gforth.ps: doc/gforth.dvi
662 :     $(DVI2PS) doc/gforth.dvi -o $@
663 : anton 1.40
664 : anton 1.100 info: doc/gforth.info
665 : anton 1.66
666 : anton 1.111 doc/gforth.info doc/gforth.info-*: $(GFORTH_TEXI)
667 : anton 1.100 -cd doc; $(MAKEINFO) gforth.texi
668 : anton 1.15
669 : anton 1.111 html: $(GFORTH_TEXI)
670 : pazsan 1.115 -$(RMTREE) html
671 : anton 1.15 -mkdir html
672 : anton 1.100 cd html; $(TEXI2HTML) -menu -split_node ../doc/gforth.texi
673 : anton 1.114
674 :     doc/gforth.txt: $(GFORTH_TEXI)
675 :     -cd doc; $(MAKEINFO) --no-headers --no-split gforth.texi >gforth.txt
676 : pazsan 1.63
677 : anton 1.126 doc: doc/gforth.ps html doc/gforth.txt
678 : pazsan 1.1
679 : anton 1.9 # For an explanation of the following Makefile rules, see node
680 :     # `Automatic Remaking' in GNU Autoconf documentation.
681 : anton 1.111 $(srcdir)/configure: configure.in aclocal.m4
682 : pazsan 1.69 cd $(srcdir) && autoconf
683 : anton 1.111
684 :     aclocal.m4: acinclude.m4 configure.in
685 :     aclocal
686 : pazsan 1.69
687 : anton 1.51 # autoheader might not change config.h.in, so touch a stamp file.
688 : anton 1.125 engine/config.h.in: stamp-h.in
689 : anton 1.100 stamp-h.in: configure.in acconfig.h
690 : pazsan 1.69 cd $(srcdir) && autoheader
691 :     echo timestamp > $(srcdir)/stamp-h.in
692 : anton 1.51
693 : anton 1.100 engine/config.h: stamp-h
694 : anton 1.125 stamp-h: engine/config.h.in config.status
695 : anton 1.100 CONFIG_FILES=$@ CONFIG_HEADERS=engine/config.h ./config.status
696 : anton 1.119 echo timestamp > stamp-h
697 : anton 1.112
698 : anton 1.135 Makefile Makedist engine/Makefile gforthmi: Makefile.in Makedist.in engine/Makefile.in gforthmi.in config.status
699 : anton 1.131 CONFIG_FILES="$@" CONFIG_HEADERS=engine/config.h ./config.status
700 : anton 1.112
701 : pazsan 1.69 config.status: configure
702 : anton 1.51 ./config.status --recheck
703 : pazsan 1.30
704 : anton 1.51
705 :     #create files for DOS, because DOS cannot do it itself
706 : jwilke 1.106 makefile.dos: mkdosmf.sed Makefile.in engine/Makefile.in
707 : pazsan 1.30 sed -f mkdosmf.sed <Makefile.in >makefile.dos
708 : anton 1.100 sed -f mkdosmf.sed <engine/Makefile.in >engine/makefile.dos
709 : pazsan 1.69
710 : jwilke 1.106 makefile.os2: mkos2mf.sed Makefile.in engine/Makefile.in
711 : pazsan 1.69 sed -f mkos2mf.sed <Makefile.in >makefile.os2
712 : anton 1.100 sed -f mkos2mf.sed <engine/Makefile.in >engine/makefile.os2
713 : pazsan 1.69 echo '%.o: %.c' >>makefile.os2
714 :     echo ' $$(GCC) $$(CFLAGS) -c $$<' >>makefile.os2
715 : anton 1.100 echo '%.o: %.c' >>engine/makefile.os2
716 :     echo ' $$(GCC) $$(CFLAGS) -c $$<' >>engine/makefile.os2

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help