[gforth] / gforth / Makefile.in  

gforth: gforth/Makefile.in


1 : anton 1.38 #Makefile for Gforth
2 :    
3 : anton 1.467 #Copyright (C) 1995,1996,1997,1998,2000,2003,2004,2005,2006,2007,2008,2009,2010,2011 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 : anton 1.372 #as published by the Free Software Foundation, either version 3
10 : anton 1.38 #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 : anton 1.387 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 : anton 1.38 #GNU General Public License for more details.
16 :    
17 :     #You should have received a copy of the GNU General Public License
18 : anton 1.372 #along with this program. If not, see http://www.gnu.org/licenses/.
19 : anton 1.38
20 : anton 1.9 # To change the values of `make' variables: instead of editing Makefiles,
21 :     # (1) if the variable is set in `config.status', edit `config.status'
22 :     # (which will cause the Makefiles to be regenerated when you run `make');
23 :     # (2) otherwise, pass the desired values on the `make' command line.
24 : pazsan 1.1
25 : jwilke 1.106 # Warning:
26 :     # For some stupid reason setting SHELL to bash does not work properly with
27 :     # DOS. If you want to use shell-specific things that must run with DOS make
28 :     # an external batch file and call it with bash (see versions.bsh).
29 :    
30 :     # ------------- gforth version
31 :    
32 : anton 1.236 VERSION = @PACKAGE_VERSION@
33 : pazsan 1.181 DOSVERSION=`echo $(VERSION)|sed 's/\.//g'|sed 's/-.*//g'`
34 : jwilke 1.106
35 :     # ------------- System specific variables
36 :    
37 : anton 1.110 machine=@machine@
38 :     kernel_fi=@kernel_fi@
39 : anton 1.250 EXE=@EXEEXT@
40 : anton 1.110
41 : jwilke 1.106 # this is the type of machine
42 :     # used to extend the include path with ./arch/$machine
43 : anton 1.110 # so we can include a machine specific
44 : jwilke 1.106 # machine.h file
45 :    
46 :     PATHSEP = @PATHSEP@
47 :    
48 : pazsan 1.347 EC = @EC@
49 : pazsan 1.475 ARCH= @ARCH@
50 :     EXT = $(EC)$(ARCH)$(EXE)
51 : pazsan 1.482 LA = $(EC)$(ARCH).la
52 : pazsan 1.347
53 : anton 1.457 # ------------ Install Directories
54 :    
55 : pazsan 1.470 package =
56 : anton 1.457 VPATH = @srcdir@
57 : pazsan 1.472 prefix = @prefix@
58 : anton 1.457 exec_prefix = @exec_prefix@
59 :     srcdir = @srcdir@
60 : pazsan 1.472 bindir = $(package)@bindir@
61 : anton 1.457 #read-only architecture-independent files
62 : pazsan 1.473 datarootdir = @datarootdir@
63 : pazsan 1.472 datadir = $(package)@datadir@
64 : anton 1.457 #read-only architecture-dependent non-ascii files
65 : pazsan 1.472 libdir = $(package)@libdir@
66 : pazsan 1.474 libexecdir = $(package)@libexecdir@
67 : pazsan 1.475 libccdir = $(subst $(DESTDIR),,$(libexecdir)/gforth$(ARCH)/$(VERSION)/libcc-named/)
68 : pazsan 1.472 includedir = $(package)@includedir@
69 :     infodir = $(package)@infodir@
70 :     htmldir = $(package)@htmldir@
71 :     mandir = $(package)@mandir@
72 : anton 1.457 man1dir= $(mandir)/man1
73 :     man1ext= .1
74 :     #older emacses have their site-lisp in $(libdir)/emacs/
75 : pazsan 1.472 emacssitelispdir=$(package)@lispdir@
76 : anton 1.457 siteforthdir=$(datadir)/gforth/site-forth
77 :    
78 : jwilke 1.106 # ------------- Utility programs
79 :    
80 : anton 1.9 SHELL = /bin/sh
81 : pazsan 1.4 RM = rm
82 : pazsan 1.74 RMTREE = rm -rf
83 : pazsan 1.144 CP = cp -p
84 : pazsan 1.129 MV = mv
85 : pazsan 1.74 TAR = tar cf -
86 : anton 1.9 INSTALL = @INSTALL@
87 : anton 1.359 INSTALL_PROGRAM = @INSTALL_PROGRAM@
88 : anton 1.340 MASSAGE_EXE = @MASSAGE_EXE@
89 : anton 1.283 INSTALL_SCRIPT = @INSTALL_SCRIPT@
90 : anton 1.9 INSTALL_DATA = @INSTALL_DATA@
91 : anton 1.257 INSTALL_INFO = @INSTALL_INFO@
92 : pazsan 1.482 LN_S = @LN_S@ -f
93 : anton 1.356 M4 = @M4@
94 : pazsan 1.48 GCC = @CC@
95 : anton 1.456 EMACS = @EMACS@
96 : anton 1.430 LIBTOOL = @GNU_LIBTOOL@
97 : anton 1.397 PREFORTH = ./preforth -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)"
98 : anton 1.23 CC = $(GCC)
99 : pazsan 1.475 FORTHPATH = .$(PATHSEP)$(libdir)/gforth/site-forth$(PATHSEP)$(siteforthdir)$(PATHSEP)$(libdir)/gforth$(ARCH)/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)
100 : anton 1.72 FORTHSIZES = @FORTHSIZES@
101 : anton 1.270 FORTHS_ARGS = -p "$(FORTHPATH)$(PATHSEP)$(srcdir)"
102 : anton 1.220 FORTH_ARGS = --die-on-signal $(FORTHS_ARGS)
103 : anton 1.385 ENGINE = ./gforth
104 : anton 1.143 FORTH = $(ENGINE) $(FORTH_ARGS)
105 : anton 1.220 FORTHS = $(ENGINE) $(FORTHS_ARGS)
106 : jwilke 1.205 # the (existing) forth system to use for cross compiling and primitives tables
107 : jwilke 1.208 # per default we use the one in this directory for a rebuild. It is also
108 :     # possible to override this variable at the command line for an initial build (jaw)
109 : pazsan 1.214 BUILDFORTH = $(ENGINE) --die-on-signal -m 4M -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)" -i $(kernel_fi)
110 : jwilke 1.205 # the forth system plus flags we use to build
111 : anton 1.293 FORTHB = $(BUILDFORTH) exboot.fs -e 'fpath= .|~+|$(srcdir)'
112 : anton 1.206 # the Forth system for running prims2x.fs
113 : pazsan 1.443 #FORTHP = $(FORTH)
114 : pazsan 1.475 ENGINE_FAST = ./gforth-fast$(EXT)
115 : anton 1.143 FORTH_FAST = $(ENGINE_FAST) $(FORTH_ARGS)
116 : anton 1.213 FORTHKFLAGS= --die-on-signal -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)" -i $(kernel_fi)
117 : pazsan 1.464 FORTHK = ./gforthker -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)"
118 : anton 1.206 #FORTHP = $(ENGINE) --die-on-signal -i ./$(kernel_fi)
119 : anton 1.183 #the "-2 image-included-files +!" undoes the change to image-included-files
120 :     # in exboot.fs
121 : anton 1.298 STARTUP = exboot.fs startup.fs @asm_fs@ @disasm_fs@
122 : anton 1.22 STRIP = strip
123 : pazsan 1.330 TEXI2DVI = @TEXI2DVI@
124 :     TEXI2PDF = @TEXI2DVI@ --pdf
125 : pazsan 1.279 DVI2PS = dvips -t letterSize -Z
126 : anton 1.99 #you can get texi2html from http://wwwcn.cern.ch/dci/texi2html/
127 : anton 1.170 MAKEINFO = makeinfo
128 : anton 1.15 TEXI2HTML = texi2html
129 : jwilke 1.106
130 :     # ------------- Compiler Flags
131 :    
132 : anton 1.9 XCFLAGS = @CFLAGS@
133 :     XDEFINES = @DEFS@
134 : anton 1.375 SWITCHES = $(XCFLAGS) $(XDEFINES) $(OPTDEFINES) #-DNDEBUG #turn off assertions
135 : pazsan 1.48 ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves
136 : pazsan 1.30 DEBUGFLAG = @DEBUGFLAG@
137 : anton 1.270 CFLAGS = $(DEBUGFLAG) -I$(srcdir)/engine -I$(srcdir)/arch/$(machine) -O3 -Wall $(SWITCHES) -DDEFAULTPATH='"$(FORTHPATH)"'
138 : anton 1.394 CPPFLAGS = @CPPFLAGS@
139 : pazsan 1.1
140 :     #John Wavrik should use -Xlinker -N to get a writable text (executable)
141 : pazsan 1.30 XLDFLAGS = @LDFLAGS@
142 : anton 1.117 LDFLAGS = $(DEBUGFLAG) $(XLDFLAGS)
143 : anton 1.9 LDLIBS = @LIBS@
144 :    
145 : anton 1.374 STACK_CACHE_REGS = @STACK_CACHE_REGS@
146 : anton 1.309 STACK_CACHE_DEFAULT_FAST = @STACK_CACHE_DEFAULT_FAST@
147 :    
148 : anton 1.280 PROFOBJS = @PROFOBJS@
149 :     PROFEXES = @PROFEXES@
150 :    
151 : anton 1.444 INSTALLDIRS = kernel doc asm ec test \
152 :     compat unix \
153 :     arch arch/generic arch/m68k arch/mips \
154 :     arch/386 arch/hppa arch/sparc arch/power \
155 :     arch/alpha arch/4stack arch/misc arch/6502 \
156 :     arch/8086 arch/avr arch/c165 arch/h8 \
157 :     arch/shboom arch/sharc arch/ia64 arch/amd64 \
158 :     arch/arm arch/r8c
159 : pazsan 1.124
160 : anton 1.336 INCLUDES = engine/forth.h engine/threaded.h engine/io.h engine/longlong.h
161 : anton 1.135
162 : anton 1.52 KERN_SRC = \
163 : jwilke 1.155 mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
164 : pazsan 1.204 machpc.fs.in \
165 : anton 1.100 kernel/aliases0.fs \
166 :     kernel/aliases.fs \
167 :     kernel/args.fs \
168 : pazsan 1.173 kernel/cbr.fs \
169 :     kernel/cloop.fs \
170 : anton 1.100 kernel/cond.fs \
171 :     kernel/cond-old.fs \
172 : anton 1.52 cross.fs \
173 : anton 1.100 kernel/errore.fs \
174 :     kernel/files.fs \
175 :     kernel/require.fs \
176 :     kernel/paths.fs \
177 :     kernel/kernel.fs \
178 :     kernel/main.fs \
179 :     kernel/prim0.fs \
180 :     search.fs \
181 : jwilke 1.156 kernel/quotes.fs \
182 : anton 1.100 kernel/tools.fs \
183 :     kernel/toolsext.fs \
184 :     kernel/vars.fs \
185 :     kernel/accept.fs \
186 :     kernel/basics.fs \
187 : pazsan 1.107 kernel/int.fs \
188 :     kernel/comp.fs \
189 : pazsan 1.459 kernel/recognizer.fs \
190 : anton 1.100 kernel/io.fs \
191 : pazsan 1.192 kernel/input.fs \
192 : anton 1.100 kernel/license.fs \
193 :     kernel/nio.fs \
194 : pazsan 1.108 kernel/saccept.fs \
195 :     kernel/doers.fs \
196 : jwilke 1.157 kernel/getdoers.fs \
197 : anton 1.304 kernel/pass.fs \
198 : pazsan 1.454 kernel/xchars.fs \
199 :     string.fs
200 : anton 1.52
201 : pazsan 1.107 EC_SRC = \
202 : anton 1.118 asm/README \
203 : pazsan 1.107 asm/bitmask.fs \
204 :     asm/numref.fs \
205 : anton 1.328 chains.fs \
206 : pazsan 1.107 asm/basic.fs \
207 :     asm/generic.fs \
208 :     asm/target.fs \
209 : anton 1.118 ec/README \
210 : pazsan 1.107 ec/mirror.fs \
211 :     ec/shex.fs \
212 :     ec/builttag.fs \
213 :     ec/dotx.fs \
214 : pazsan 1.324 ec/nesting.fs \
215 :     build-ec.in
216 : pazsan 1.107
217 : dvdkhlng 1.452 GFORTH_FI_SRC1=\
218 : anton 1.52 assert.fs \
219 : pazsan 1.181 backtrac.fs \
220 : anton 1.100 blocked.fb \
221 : anton 1.52 blocks.fs \
222 :     bufio.fs \
223 : anton 1.235 code.fs \
224 : anton 1.52 debug.fs \
225 : anton 1.100 debugs.fs \
226 : anton 1.297 dis-gdb.fs \
227 : anton 1.162 ekey.fs \
228 : dvdkhlng 1.452
229 :     GFORTH_FI_SRC2=\
230 : anton 1.100 savesys.fs \
231 : anton 1.52 environ.fs \
232 : pazsan 1.82 errors.fs \
233 : anton 1.172 exboot.fs \
234 : pazsan 1.181 except.fs \
235 : pazsan 1.82 extend.fs \
236 : anton 1.52 float.fs \
237 :     glocals.fs \
238 :     hash.fs \
239 :     history.fs \
240 : anton 1.64 intcomp.fs \
241 : pazsan 1.481 i18n.fs \
242 : pazsan 1.424 mkdir.fs \
243 : anton 1.349 libcc.fs \
244 : pazsan 1.101 locals.fs \
245 : anton 1.52 look.fs \
246 : anton 1.425 mkdir.fs \
247 : anton 1.446 prelude.fs \
248 : anton 1.221 quotes.fs \
249 : pazsan 1.478 quotedstring.fs \
250 : pazsan 1.479 parsedto.fs \
251 : anton 1.100 search.fs \
252 : anton 1.52 see.fs \
253 : pazsan 1.85 see-ext.fs \
254 : anton 1.207 simp-see.fs \
255 : anton 1.52 source.fs \
256 :     startup.fs \
257 : anton 1.458 str-exec.fs \
258 : anton 1.52 struct.fs \
259 : anton 1.354 struct0x.fs \
260 : anton 1.52 stuff.fs \
261 : pazsan 1.481 substitute.fs \
262 : pazsan 1.60 tasker.fs \
263 : anton 1.52 termsize.fs \
264 : pazsan 1.301 utf-8.fs \
265 : anton 1.52 vt100.fs \
266 :     vt100key.fs \
267 : pazsan 1.101 wordinfo.fs \
268 : anton 1.178 arch/386/asm.fs arch/386/disasm.fs \
269 : pazsan 1.301 arch/amd64/asm.fs arch/amd64/disasm.fs \
270 : anton 1.306 arch/alpha/asm.fs arch/alpha/disasm.fs arch/alpha/testasm.fs\
271 : anton 1.450 arch/arm/asm.fs arch/arm/disasm.fs \
272 :     arch/arm/testdisasm.fs arch/arm/testdisasm.out arch/arm/Makefile \
273 : anton 1.306 arch/mips/asm.fs arch/mips/disasm.fs arch/mips/insts.fs \
274 : anton 1.332 arch/mips/testasm.fs arch/mips/testdisasm.fs \
275 : dvdkhlng 1.468 arch/power/asm.fs arch/power/disasm.fs arch/power/inst.fs \
276 :     arch/lm32/asm.fs arch/lm32/testasm.fs
277 : anton 1.52
278 : dvdkhlng 1.452 # execlude envos.fs into list of distributed sources
279 :     GFORTH_FI_DIST_SRC = \
280 :     $(GFORTH_FI_SRC1) \
281 :     $(GFORTH_FI_SRC2)
282 :    
283 :     GFORTH_FI_SRC = \
284 :     $(GFORTH_FI_SRC1) \
285 :     envos.fs \
286 :     $(GFORTH_FI_SRC2)
287 :    
288 : pazsan 1.469 LIBCC_SRC = cstr.fs unix/socket.fs unix/pthread.fs
289 : anton 1.418
290 :     LIBCC_DIST_SRC = libffi.fs fflib.fs $(LIBCC_SRC)
291 :    
292 :     LIBCC_BUILD_SRC = @LIBCC_BUILD_SRC@ $(LIBCC_SRC)
293 :    
294 : dvdkhlng 1.452
295 :     FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_DIST_SRC) $(EC_SRC) $(LIBCC_DIST_SRC) \
296 : anton 1.75 ans-report.fs ansi.fs answords.fs \
297 : anton 1.331 colorize.fs comp-i.fs complex.fs \
298 : anton 1.296 depth-changes.fs dosekey.fs doskey.fs ds2texi.fs \
299 : anton 1.331 envos.dos envos.os2 etags.fs fft.fs filedump.fs fi2c.fs \
300 : anton 1.434 fsl-util.4th glosgen.fs gray.fs httpd.fs install-tags.fs \
301 : anton 1.431 make-app.fs doc/makedoc.fs locate.fs more.fs onebench.fs \
302 : anton 1.434 other.fs prims2x.fs prims2x0.6.2.fs proxy.fs random.fs \
303 : anton 1.331 regexp.fs sokoban.fs string.fs table.fs tags.fs \
304 : pazsan 1.466 tt.fs quotations.fs \
305 : anton 1.337 unbuffer.fs wordsets.fs xwords.fs \
306 : anton 1.365 test/tester.fs test/ttester.fs \
307 : anton 1.363 test/coretest.fs test/postpone.fs test/dbltest.fs \
308 : anton 1.370 test/string.fs test/float.fs test/search.fs test/gforth.fs \
309 : anton 1.230 test/other.fs test/signals.fs test/checkans.fs \
310 : pazsan 1.315 test/primtest.fs test/coreext.fs test/deferred.fs \
311 : anton 1.349 test/coremore.fs test/gforth-nofast.fs test/libcc.fs \
312 : anton 1.447 test/macros.fs \
313 : pazsan 1.65 bubble.fs siev.fs matrix.fs fib.fs \
314 : crook 1.151 oof.fs oofsampl.fs objects.fs objexamp.fs mini-oof.fs moof-exm.fs \
315 : pazsan 1.195 moofglos.fs fixpath.fs \
316 : anton 1.402 add.fs lib.fs oldlib.fs sieve.fs \
317 : pazsan 1.477 endtry-iferror.fs recover-endtry.fs smartdots.fs
318 : pazsan 1.1
319 : anton 1.131 COMPAT = compat/README \
320 :     compat/anslocal.fs \
321 :     compat/assert.fs \
322 :     compat/control.fs \
323 :     compat/defer.fs \
324 :     compat/exception.fs \
325 : anton 1.314 compat/execute-parsing.fs \
326 : anton 1.131 compat/loops.fs \
327 : anton 1.447 compat/macros.fs \
328 : anton 1.131 compat/required.fs \
329 : anton 1.227 compat/strcomp.fs \
330 : anton 1.131 compat/struct.fs \
331 :     compat/vocabulary.fs
332 : anton 1.100
333 : anton 1.111 GFORTH_TEXI = doc/gforth.texi doc/version.texi
334 :    
335 : anton 1.223 VMGEN_TEXI = doc/vmgen.texi doc/version.texi doc/fdl.texi
336 :    
337 : anton 1.100 ALLSUBDIRS = engine
338 :    
339 : anton 1.135 ARCHS = \
340 :     arch/generic/machine.h \
341 :     arch/m68k/machine.h \
342 :     arch/mips/machine.h \
343 : dvdkhlng 1.451 arch/mips/check_prim.c \
344 : anton 1.135 arch/386/machine.h \
345 :     arch/hppa/machine.h \
346 :     arch/hppa/cache.c \
347 :     arch/sparc/machine.h \
348 :     arch/power/machine.h \
349 :     arch/power/_sync_cache_range.c \
350 :     arch/alpha/machine.h \
351 : anton 1.281 arch/arm/machine.h \
352 : anton 1.346 arch/arm/cacheflush0.c \
353 : dvdkhlng 1.386 arch/arm/cacheflush-linux.c \
354 : anton 1.185 arch/ia64/machine.h \
355 : anton 1.281 arch/ia64/flush_icache_block.c \
356 :     arch/amd64/machine.h \
357 : anton 1.135 arch/4stack/README \
358 :     arch/4stack/asm.fs \
359 :     arch/4stack/mach.fs \
360 :     arch/4stack/prim.fs \
361 :     arch/4stack/mach.sh \
362 :     arch/4stack/relocate.fs \
363 :     arch/misc/README \
364 :     arch/misc/asm.fs \
365 :     arch/misc/mach.fs \
366 : anton 1.290 arch/misc/optcmove.fs \
367 : anton 1.135 arch/misc/prim.fs \
368 :     arch/misc/sim.fs \
369 :     arch/misc/sokoban.fs \
370 :     arch/misc/tt.fs \
371 :     arch/6502/prim.fs \
372 :     arch/6502/mach.fs \
373 :     arch/shboom/asm.fs \
374 :     arch/shboom/compiler.fs \
375 :     arch/shboom/dis.fs \
376 :     arch/shboom/mach.fs \
377 :     arch/shboom/prim.fs \
378 :     arch/shboom/dis2.fs \
379 :     arch/shboom/sh.p \
380 : pazsan 1.192 arch/shboom/doers.fs \
381 :     arch/sharc/mach.fs \
382 :     arch/sharc/machine.h \
383 :     arch/sharc/compile.sharc \
384 :     arch/sharc/systypes.h \
385 :     arch/sharc/types.h \
386 : pazsan 1.315 arch/sharc/g21k-3.3.4-bp1.diff \
387 :     arch/r8c/asm.fs \
388 : anton 1.409 arch/r8c/mach.fs \
389 : pazsan 1.438 arch/r8c/errors.fs \
390 : pazsan 1.439 arch/r8c/prim.fs \
391 :     arch/r8c/asm-test.fs \
392 :     arch/r8c/errors.fs \
393 :     arch/r8c/lauflicht.fs \
394 :     arch/r8c/tasker.fs \
395 :     arch/r8c/terminal.fs \
396 : dvdkhlng 1.468 arch/sharc/unistd.h \
397 :     arch/lm32/mach.fs \
398 :     arch/lm32/mach.sh \
399 :     arch/lm32/prim.fs \
400 :     arch/lm32/Makefile \
401 :     arch/lm32/testasm.disas-ok
402 : anton 1.302
403 :     #not included in distribution until distribution terms are included:
404 :     ARCHS_NO_DIST = \
405 :     arch/6502/asm.fs \
406 :     arch/6502/cold.fs \
407 :     arch/6502/softuart.fs \
408 :     arch/6502/zero.fs \
409 :     arch/8086/asm.fs \
410 :     arch/8086/mach.fs \
411 :     arch/8086/mach.sh \
412 :     arch/8086/prim.fs \
413 :     arch/avr/asm.fs \
414 :     arch/c165/asm.fs \
415 :     arch/c165/mach.fs \
416 :     arch/c165/prim.fs \
417 : anton 1.442 arch/h8/asm.fs \
418 :     arch/r8c/tt.fs
419 : anton 1.135
420 : anton 1.444 VMGEN_EX = vmgen-ex/Makefile vmgen-ex/README vmgen-ex/disasm.c \
421 : anton 1.206 vmgen-ex/engine.c vmgen-ex/fib.mini \
422 :     vmgen-ex/mini-inst.vmg vmgen-ex/mini-super.vmg vmgen-ex/mini.h \
423 :     vmgen-ex/mini.l vmgen-ex/mini.y vmgen-ex/peephole-blacklist \
424 :     vmgen-ex/peephole.c vmgen-ex/profile.c vmgen-ex/seq2rule.awk \
425 :     vmgen-ex/simple.mini vmgen-ex/stat.awk vmgen-ex/support.c \
426 :     vmgen-ex/test.mini vmgen-ex/test.out
427 :    
428 : anton 1.226 VMGEN_EX2 = $(VMGEN_EX:vmgen-ex/%=vmgen-ex2/%)
429 :    
430 : anton 1.382 ENGINE_SOURCES = engine/Makefile.in engine/config.h.in \
431 : anton 1.287 engine/engine.c engine/main.c \
432 : anton 1.351 engine/io.c engine/support.c engine/signals.c engine/libcc.h.in \
433 : pazsan 1.393 engine/profile.c engine/128bit.h \
434 : anton 1.135 engine/getopt.c engine/getopt1.c engine/getopt.h engine/select.c \
435 : anton 1.281 engine/ecvt.c engine/memcmp.c engine/rint.c \
436 :     engine/strtol.c engine/strtoul.c \
437 : anton 1.135 engine/ansidecl.h engine/memmove.c \
438 :     engine/pow10.c engine/atanh.c engine/cleanalign.c \
439 :     engine/strerror.c engine/strsignal.c engine/dblsub.c \
440 : anton 1.177 engine/fnmatch.h engine/fnmatch.c \
441 : anton 1.382 engine/makefile.dos engine/makefile.os2
442 :    
443 : anton 1.444 SOURCES = $(ENGINE_SOURCES) compat Makefile.in Makedist.in \
444 : pazsan 1.474 gforthmi.in vmgen.in preforth.in libforth.in gforthker.in gfgen README.vmgen NEWS.vmgen \
445 : anton 1.414 autogen.sh configure.in configure config.sub config.guess \
446 :     elisp-comp missing stamp-h.in envos.fs.in \
447 : anton 1.382 iss.sh install-sh INSTALL INSTALL.BINDIST NEWS README ToDo BUGS \
448 :     BUILD-FROM-SCRATCH model \
449 :     COPYING COPYING.LIB COPYING.DOC AUTHORS ChangeLog Benchres aclocal.m4 \
450 :     doc/gforth.ds doc/gforth.1 doc/version.texi.in \
451 :     doc/vmgen.texi doc/fdl.texi doc/gpl.texi \
452 :     gforth.el \
453 :     $(ARCHS) \
454 :     INSTALL.DOS makefile.dos mkdosmf.sed config.bat \
455 : anton 1.141 dosconf.h gforthmi.bat mkinstalldirs siteinit.fs \
456 : anton 1.135 versions.bsh \
457 : anton 1.382 configure.cmd mkos2mf.sed os2conf.h makefile.os2 \
458 : anton 1.135 gforthmi.cmd glosgen.glo doc/glossaries.doc \
459 : anton 1.270 $(INCLUDES) $(FORTH_SRC) $(COMPAT) $(VMGEN_EX) $(VMGEN_EX2) \
460 : anton 1.158 timings.sc \
461 : anton 1.342 test/coretest.out test/checkans.out test/gforth.out \
462 : anton 1.398 cache*.vmg peeprules.vmg prim
463 : anton 1.135
464 : anton 1.5 RCS_FILES = ToDo model high-level
465 : pazsan 1.1
466 : pazsan 1.475 ENGINES = gforth$(EXT) @NO_EC@ gforth-ditc$(EXT) gforth-itc$(EXT) $(PROFEXES)
467 : anton 1.377
468 : pazsan 1.475 ENGINES_FAST = @NO_EC@ gforth-fast$(OPT)$(EXT) #gforth-native$(OPT)$(EXT)
469 : anton 1.377
470 : anton 1.456 GEN = $(ENGINES) $(ENGINES_FAST) @gforth_elc@
471 : pazsan 1.1
472 :     # things that need a working forth system to be generated
473 : anton 1.232 FORTH_GEN_ENGINE=engine/prim.i engine/prim_lab.i engine/prim_names.i \
474 : anton 1.244 engine/prim_superend.i engine/profile.i \
475 : anton 1.266 engine/prim_num.i engine/prim_grp.i \
476 :     engine/costs.i engine/super2.i
477 : anton 1.285 FORTH_GEN_ENGINE_FAST= \
478 :     engine/prim-fast.i engine/prim_lab-fast.i engine/prim_names-fast.i \
479 :     engine/prim_superend-fast.i engine/profile-fast.i \
480 :     engine/prim_num-fast.i engine/prim_grp-fast.i \
481 :     engine/costs-fast.i engine/super2-fast.i
482 : anton 1.331 FORTH_GEN_PRIMB = $(FORTH_GEN_ENGINE) kernel/aliases.fs kernel/prim.fs
483 : pazsan 1.411 FORTH_GEN0 = prim.b $(FORTH_GEN_PRIMB)
484 : pazsan 1.462 FORTH_GEN = $(FORTH_GEN0) @KERNEL@ @NO_CROSS@ gforth.fi
485 : pazsan 1.1 # this is used for antidependences,
486 : pazsan 1.324 FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@ build-ec
487 : anton 1.5
488 : anton 1.227 #kernel dependencies
489 : anton 1.385 KERN_DEPS = $(KERN_SRC) kernel/version.fs machpc.fs $(FORTH_GEN0) compat/strcomp.fs
490 : anton 1.227
491 : anton 1.38 #distributed documentation
492 : pazsan 1.320 DOCDIST = doc/gforth.info doc/gforth.info-* doc/gforth.ps \
493 :     doc/vmgen.info doc/vmgen.ps
494 : anton 1.5
495 : pazsan 1.373 BKERNLS = kernl16b$(EC).fi kernl16l$(EC).fi \
496 :     kernl32b$(EC).fi kernl32l$(EC).fi \
497 :     kernl64b$(EC).fi kernl64l$(EC).fi
498 :    
499 : pazsan 1.347 KERNLS = kernl16b$(EC).fi- kernl16l$(EC).fi- \
500 :     kernl32b$(EC).fi- kernl32l$(EC).fi- \
501 :     kernl64b$(EC).fi- kernl64l$(EC).fi-
502 : pazsan 1.30
503 : pazsan 1.389 # ------------- Make forth images
504 : anton 1.223 GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) \
505 :     doc/gforth.texi doc/gforth.dvi doc/gforth.ps \
506 :     doc/vmgen.dvi doc/vmgen.ps \
507 :     Makefile Makedist engine/Makefile configure
508 : pazsan 1.1
509 : anton 1.9 #standards.info recommends this:
510 :     .SUFFIXES:
511 :     .SUFFIXES: .c .o
512 :    
513 : pazsan 1.462 all: kernel/version.fs more @NO_CROSS@ check
514 : pazsan 1.1
515 : jwilke 1.106 # use this dependency for phony targets just as mostlyclean,...
516 :     FORCE: ;
517 :    
518 : anton 1.437 #targets of failed commands should be deleted:
519 :     .DELETE_ON_ERROR:
520 :    
521 : anton 1.78 #this rule avoids remaking everything after minor changes in Makefile.in
522 : anton 1.207 version: Makefile.in configure.in
523 : anton 1.94 if test -r $@ && test x'$(VERSION)' = x`cat $@` ; then true ; else echo $(VERSION) > $@ ; fi
524 : anton 1.78
525 : jwilke 1.106 # With dos we use normal dos echo
526 :     # we cannot pipe the output to engine/version.h directly because
527 :     # of the "/ and \" problem. Copying works because we use the
528 :     # shell und file utilities.
529 :    
530 : anton 1.100 kernel/version.fs: version
531 : pazsan 1.129 echo ": version-string s\" $(VERSION)\" ;" > kernel/version.fs
532 : pazsan 1.2
533 : pazsan 1.482 more: $(ENGINES) $(FORTH_GEN) $(GEN) @libengines@ @build_libcc_named@
534 : pazsan 1.2
535 : pazsan 1.1 #from the gcc Makefile:
536 :     #"Deletion of files made during compilation.
537 :     # There are four levels of this:
538 :     # `mostlyclean', `clean', `distclean' and `realclean'.
539 :     # `mostlyclean' is useful while working on a particular type of machine.
540 :     # It deletes most, but not all, of the files made by compilation.
541 :     # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
542 :     # `clean' deletes everything made by running `make all'.
543 :     # `distclean' also deletes the files made by config.
544 :     # `realclean' also deletes everything that could be regenerated automatically."
545 :    
546 : jwilke 1.106 mostlyclean: FORCE
547 : anton 1.118 -$(RM) -rf engine/*.s gforth.fi *.fi~ *.fi- kernel/version.fs \
548 :     *TAGS gforth~ \
549 : anton 1.100 doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
550 :     doc/gforth.aux doc/gforth.cp doc/gforth.cps \
551 :     doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
552 :     doc/gforth.pg \
553 :     doc/gforth.toc doc/gforth.tp doc/gforth.vr html \
554 : anton 1.110 gforth-$(VERSION).tar.gz
555 : anton 1.45
556 : crook 1.146 # Just the stuff needed to rebuild the documentation nac03feb1999
557 :     docclean: FORCE
558 :     -$(RM) -rf doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
559 :     doc/gforth.aux doc/gforth.cp doc/gforth.cps \
560 :     doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
561 :     doc/gforth.pg \
562 :     doc/gforth.toc doc/gforth.tp doc/gforth.vr html
563 :    
564 : anton 1.45 clean: mostlyclean
565 : pazsan 1.482 -$(RM) -rf $(GEN) *.o engine/*.o engine/*.lo engine/*.la \
566 :     engine/.libs engine/libgforth* libgforth* arch/*/*.o version \
567 : pazsan 1.475 gforth-itc-noll$(EXT) engine/gforth-itc-noll$(EXT) \
568 :     gforth-ditc-noll$(EXT) engine/gforth-ditc-noll$(EXT) \
569 :     gforth-prof-noll$(EXT) engine/gforth-prof-noll$(EXT) \
570 : anton 1.381 engine/prim-s.i
571 : pazsan 1.475 for i in gforth gforth-fast gforth-native; do for j in $(OPTS); do rm -f engine/$$i$${j}$(EXT) $$i$${j}$(EXT); done; done
572 : pazsan 1.1
573 :     distclean: clean
574 : anton 1.267 -$(RM) -rf config.cache config.log config.status \
575 : pazsan 1.134 engine/config.h Makefile Makedist engine/Makefile \
576 : anton 1.118 stamp-h engine/stamp-h \
577 : anton 1.397 doc/version.texi gforthmi vmgen preforth \
578 : anton 1.309 prim-fast.b $(FORTH_GEN_ENGINE_FAST)
579 : pazsan 1.1
580 : anton 1.53 #realclean is useless, but dangerous, so it's commented out
581 : pazsan 1.174 realclean: distclean
582 : anton 1.392 -$(RM) -rf $(GEN_PRECIOUS) `cat .cvsignore`
583 : pazsan 1.1
584 : anton 1.45 #mostlyclean, but also remove some of the stuff that is distributed
585 :     virtualclean: mostlyclean
586 :     -$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \
587 : anton 1.59 gforth-$(VERSION).tar.gz config.cache *~ */*~
588 : anton 1.45
589 : anton 1.396 maintainer-clean: realclean
590 :    
591 : anton 1.135 #Some makes (Ultrix, SunOS, IRIX) are so broken, they cannot read the
592 :     #Makefile if it contains our dist rules. Therefore we have put these
593 :     #rules in Makedist (you can use them with GNU make on these systems).
594 : pazsan 1.274
595 : pazsan 1.343 dist: Makedist FORCE
596 : anton 1.135 $(MAKE) -f Makedist d$@
597 : pazsan 1.134
598 : pazsan 1.343 dosdist: Makedist FORCE
599 : anton 1.135 $(MAKE) -f Makedist d$@
600 : pazsan 1.134
601 : anton 1.136 srcdist: Makedist FORCE
602 : anton 1.135 $(MAKE) -f Makedist d$@
603 : pazsan 1.134
604 : anton 1.136 srconlydist: Makedist FORCE
605 : anton 1.135 $(MAKE) -f Makedist d$@
606 : pazsan 1.134
607 : anton 1.136 docdist: Makedist FORCE
608 : anton 1.135 $(MAKE) -f Makedist d$@
609 : pazsan 1.134
610 : anton 1.136 htmldist: Makedist FORCE
611 : anton 1.135 $(MAKE) -f Makedist d$@
612 : pazsan 1.1
613 : pazsan 1.343 bindist: Makedist FORCE
614 : anton 1.135 $(MAKE) -f Makedist d$@
615 :    
616 : pazsan 1.343 binonlydist: Makedist FORCE
617 : anton 1.135 $(MAKE) -f Makedist d$@
618 : anton 1.22
619 : pazsan 1.470 debdist: Makedist FORCE
620 :     $(MAKE) -f Makedist d$@
621 :    
622 : anton 1.275 #HPUX make breaks the cycle differently when the dates are equal, so
623 :     # touch some of the files if it acts up
624 :     hpux-workaround:
625 :     touch $(FORTH_GEN_PRIMB)
626 : anton 1.22
627 : anton 1.15 #strip gforth, because the debugging stuff is hardly useful once
628 : anton 1.187 # gforth manages to execute more than a few primitives.
629 : anton 1.15
630 : anton 1.68 #install does not depend on gforth.info, because that would require
631 :     #supplying a lot of files that can be easily generated (only info is
632 : anton 1.187 #hard to generate).
633 :     #we rebuild gforth.fi, because it contains some path names.
634 :     #we delete $build/gforth.fi and $build/install.TAGS after installation because of ownership.
635 : pazsan 1.482 install: gforth$(EXT) $(FORTH_SRC) $(kernel_fi) gforthmi vmgen doc/gforth.1 prim install.TAGS installdirs @libinstall@ @NO_CROSS@ gforth.fi
636 : anton 1.331 $(NORMAL_INSTALL)
637 : anton 1.316 touch $(DESTDIR)$(siteforthdir)/siteinit.fs
638 : pazsan 1.475 -$(RM) $(DESTDIR)$(bindir)/gforth$(EXT) $(DESTDIR)$(bindir)/gforth-$(VERSION)$(EXT) $(DESTDIR)$(bindir)/gforthmi $(DESTDIR)$(bindir)/vmgen
639 :     -$(RM) $(DESTDIR)$(bindir)/gforth-fast$(EXT) $(DESTDIR)$(bindir)/gforth-fast-$(VERSION)$(EXT)
640 :     -$(RM) $(DESTDIR)$(bindir)/gforth-itc$(EXT) $(DESTDIR)$(bindir)/gforth-itc-$(VERSION)$(EXT)
641 :     -$(RM) $(DESTDIR)$(bindir)/gforth-ditc$(EXT) $(DESTDIR)$(bindir)/gforth-ditc-$(VERSION)$(EXT)
642 :     $(INSTALL_PROGRAM) gforth$(EXT) $(DESTDIR)$(bindir)/gforth-$(VERSION)$(EXT)
643 :     -$(MASSAGE_EXE) $(DESTDIR)$(bindir)/gforth-$(VERSION)$(EXT)
644 :     (cd $(DESTDIR)$(bindir) && $(LN_S) gforth-$(VERSION)$(EXT) gforth$(EXT))
645 :     $(INSTALL_PROGRAM) gforth-fast$(EXT) $(DESTDIR)$(bindir)/gforth-fast-$(VERSION)$(EXT)
646 :     -$(MASSAGE_EXE) $(DESTDIR)$(bindir)/gforth-fast-$(VERSION)$(EXT)
647 :     (cd $(DESTDIR)$(bindir) && $(LN_S) gforth-fast-$(VERSION)$(EXT) gforth-fast$(EXT))
648 :     $(INSTALL_PROGRAM) gforth-itc$(EXT) $(DESTDIR)$(bindir)/gforth-itc-$(VERSION)$(EXT)
649 :     (cd $(DESTDIR)$(bindir) && $(LN_S) gforth-itc-$(VERSION)$(EXT) gforth-itc$(EXT))
650 :     $(INSTALL_PROGRAM) gforth-ditc$(EXT) $(DESTDIR)$(bindir)/gforth-ditc-$(VERSION)$(EXT)
651 :     (cd $(DESTDIR)$(bindir) && $(LN_S) gforth-ditc-$(VERSION)$(EXT) gforth-ditc$(EXT))
652 : anton 1.316 $(INSTALL_SCRIPT) gforthmi $(DESTDIR)$(bindir)/gforthmi-$(VERSION)
653 : anton 1.427 $(INSTALL_SCRIPT) vmgen $(DESTDIR)$(bindir)/vmgen-$(VERSION)
654 : anton 1.316 (cd $(DESTDIR)$(bindir) && $(LN_S) gforthmi-$(VERSION) gforthmi)
655 : anton 1.427 (cd $(DESTDIR)$(bindir) && $(LN_S) vmgen-$(VERSION) vmgen)
656 : anton 1.316 -$(INSTALL_DATA) $(srcdir)/doc/gforth.1 $(DESTDIR)$(man1dir)
657 : anton 1.427 -for i in $(srcdir)/doc/gforth.info* $(srcdir)/doc/vmgen.info*; do $(INSTALL_DATA) $$i $(DESTDIR)$(infodir); done
658 : dvdkhlng 1.452 for i in $(FORTH_SRC) $(COMPAT) envos.fs prim; do \
659 : anton 1.316 $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(datadir)/gforth/$(VERSION)/$$i; \
660 : anton 1.9 done
661 : pazsan 1.475 $(INSTALL_DATA) $(kernel_fi) $(DESTDIR)$(libdir)/gforth$(ARCH)/$(VERSION)
662 : anton 1.342 @if test -d "$(DESTDIR)$(emacssitelispdir)"; then \
663 : anton 1.456 for i in gforth.el @gforth_elc@; do \
664 :     $(INSTALL_DATA) $$i $(DESTDIR)$(emacssitelispdir); \
665 :     done; \
666 : pazsan 1.55 else \
667 : anton 1.416 echo '>>>>>Please install gforth.{el,elc} in your .../emacs/site-lisp directory'; \
668 : anton 1.52 fi
669 : anton 1.190 -$(RM) gforth.fi
670 : pazsan 1.475 @NO_CROSS@GFORTHD="./gforth-ditc$(EXT) -p $(DESTDIR)$(libdir)/gforth/site-forth$(PATHSEP)$(DESTDIR)$(siteforthdir)$(PATHSEP)$(DESTDIR)$(datadir)/gforth/$(VERSION) -i $(kernel_fi)" GFORTH="./gforth-ditc$(EXT) -p $(DESTDIR)$(libdir)/gforth/site-forth$(PATHSEP)$(DESTDIR)$(siteforthdir)$(PATHSEP)$(DESTDIR)$(datadir)/gforth/$(VERSION) --die-on-signal -i $(kernel_fi) $(STARTUP)" includedir=$(includedir) bindir=$(bindir) libccdir=$(libccdir) GFORTHPATH=.:"$$GFORTHPATH" GFORTHDESTDIR="$(DESTDIR)" ./gforthmi gforth.fi $(FORTHSIZES) $(STARTUP)
671 :     @NO_CROSS@$(INSTALL_DATA) gforth.fi $(DESTDIR)$(libdir)/gforth$(ARCH)/$(VERSION)
672 : anton 1.316 $(INSTALL_DATA) install.TAGS $(DESTDIR)$(datadir)/gforth/$(VERSION)/TAGS
673 : pazsan 1.473 $(RM) install.TAGS @NO_CROSS@gforth.fi
674 : pazsan 1.480 $(INSTALL_DATA) include/gforth$(ARCH)/$(VERSION)/* $(DESTDIR)$(includedir)/gforth$(ARCH)/$(VERSION)
675 : pazsan 1.474 if test -n "$(LIBTOOL)"; then for i in $(LIBCC_BUILD_SRC); do \
676 : pazsan 1.485 $(LIBTOOL) --silent --mode=install $(INSTALL) lib/gforth$(ARCH)/$(VERSION)/libcc-named/libgf`basename $$i .fs`.la $(DESTDIR)$(libccdir)libgf`basename $$i .fs`.la; \
677 : pazsan 1.474 done; fi
678 : anton 1.331 $(POST_INSTALL)
679 : anton 1.316 $(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gforth.info
680 : anton 1.431 $(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/vmgen.info
681 : anton 1.40
682 : anton 1.66 install-strip: install
683 :    
684 : pazsan 1.482 libinstall: $(ENGINES:%$(EXT)=lib%) $(ENGINES_FAST:%$(EXT)=lib%)
685 :     for i in $(ENGINES:%$(EXT)=lib%) $(ENGINES_FAST:%$(EXT)=lib%); do \
686 :     $(LIBTOOL) --silent --mode=install $(INSTALL) engine/$$i.la $(libdir)/$$i.la; \
687 :     done
688 :    
689 : anton 1.78 installdirs: mkinstalldirs
690 : anton 1.331 $(NORMAL_INSTALL)
691 : pazsan 1.480 for i in $(bindir) $(man1dir) $(infodir) $(libdir)/gforth$(ARCH)/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(siteforthdir) $(includedir)/gforth$(ARCH)/$(VERSION) $(libccdir); do \
692 : anton 1.316 $(srcdir)/mkinstalldirs $(DESTDIR)$$i; \
693 : anton 1.141 done
694 : anton 1.444 #
695 :     for i in $(INSTALLDIRS); do \
696 :     $(srcdir)/mkinstalldirs $(DESTDIR)$(datadir)/gforth/$(VERSION)/$$i; \
697 : anton 1.131 done
698 : anton 1.78
699 : anton 1.40 #deinstall all files specific to this version of gforth
700 :     #to uninstall version foo, type `make uninstall VERSION=foo'
701 : jwilke 1.106 uninstall: FORCE
702 : anton 1.331 $(NORMAL_UNINSTALL)
703 : pazsan 1.475 -$(RM) -rf $(DESTDIR)$(libdir)/gforth$(ARCH)/$(VERSION) $(DESTDIR)$(datadir)/gforth/$(VERSION) $(DESTDIR)$(bindir)/gforth-$(VERSION)$(EXT) $(DESTDIR)$(bindir)/gforth-fast-$(VERSION)$(EXT) $(DESTDIR)$(bindir)/gforth-itc-$(VERSION)$(EXT) $(DESTDIR)$(bindir)/gforthmi-$(VERSION) $(DESTDIR)$(bindir)/vmgen-$(VERSION) $(DESTDIR)$(includedir)/gforth/$(VERSION)
704 :     @echo -e "To remove Gforth completely, type\n$(RM) -rf $(DESTDIR)$(bindir)/gforth$(EXT) $(DESTDIR)$(bindir)/gforth-fast$(EXT) $(DESTDIR)$(bindir)/gforth-itc$(EXT) $(DESTDIR)$(bindir)/gforthmi $(DESTDIR)$(bindir)/vmgen $(DESTDIR)$(man1dir)/gforth.1 $(DESTDIR)$(infodir)/gforth.info* $(DESTDIR)$(datadir)/gforth $(DESTDIR)$(libdir)/gforth"
705 : anton 1.40
706 : anton 1.430 build-libcc-named: $(LIBCC_BUILD_SRC) $(FORTH_GEN) $(GEN) FORCE
707 : pazsan 1.475 $(RMTREE) lib/gforth$(ARCH)/$(VERSION)/libcc-named/
708 :     for i in $(LIBCC_BUILD_SRC); do ./libforth -e "s\" `pwd`/lib/gforth$(ARCH)/$(VERSION)/libcc-named/\" libcc-named-dir-v 2! libcc-path clear-path libcc-named-dir libcc-path also-path :noname 2drop s\" $(DESTDIR)$(libccdir)\" ; is replace-rpath" $(srcdir)/$$i -e bye; done
709 : anton 1.402
710 :     check: gforths gforth.fi
711 : pazsan 1.475 $(MAKE) checkone check-nofast ENGINE="./gforth$(EXT) --no-dynamic" >/dev/null 2>&1
712 :     $(MAKE) checkone check-nofast ENGINE="./gforth-itc$(EXT)" >/dev/null 2>&1
713 :     $(MAKE) checkone check-nofast ENGINE="./gforth-ditc$(EXT)" >/dev/null 2>&1
714 :     $(MAKE) checkone ENGINE="./gforth-fast$(EXT) --no-dynamic" >/dev/null 2>&1
715 :     $(MAKE) checkone check-nofast ENGINE="./gforth$(EXT)" >/dev/null 2>&1
716 :     $(MAKE) checkone ENGINE="./gforth-fast$(EXT)" >/dev/null 2>&1
717 : pazsan 1.238 @echo "*** Check successful ***"
718 : pazsan 1.475 ./gforth-fast$(EXT) --diag -e bye
719 : anton 1.233
720 : anton 1.380 checkone test: gforth.fi engine/prim-s.i
721 : pazsan 1.460 $(FORTH) test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs test/string.fs test/float.fs test/deferred.fs test/coreext.fs test/search.fs -e bye 2>/dev/null | tr -d '\015' | diff -c - $(srcdir)/test/coretest.out
722 : anton 1.100 $(FORTH) test/other.fs -e bye
723 : anton 1.220 $(FORTHS) test/signals.fs -e bye
724 : anton 1.447 $(FORTHS) test/coremore.fs test/gforth.fs test/macros.fs -e bye 2>&1 | tr -d '\015' | diff -c - $(srcdir)/test/gforth.out
725 : anton 1.251 $(FORTH) code.fs test/checkans.fs -e bye | tr -d '\015' | diff -c - $(srcdir)/test/checkans.out
726 : anton 1.213 $(FORTH) prims2x.fs -e \
727 : anton 1.225 "c-flag on s\" prim.i\" out-filename 2! s\" $(srcdir)/prim.b\" ' output-c ' output-c-combined process-file bye"| \
728 : anton 1.357 tr -d '\015' | grep -v '^#line '|diff -c - engine/prim-s.i
729 : anton 1.334
730 : anton 1.380 check-nofast: gforth.fi
731 : anton 1.334 $(FORTHS) test/gforth-nofast.fs -e bye
732 : anton 1.288
733 :     test/primtest.fi: test/primtest.fs mach32l.fs cross.fs
734 : anton 1.345 $(FORTHB) -e 's" mach32l.fs"' $(srcdir)/test/primtest.fs -e "save-cross $@ $(bindir)/gforth-$(VERSION) bye"
735 : anton 1.288
736 : anton 1.289 primtest: gforth gforth-native test/primtest.fi FORCE
737 : anton 1.291 (echo rs|ENVVAR=bla ./gforth -i test/primtest.fi) && (echo rs|ENVVAR=bla ./gforth-native -i test/primtest.fi); echo $$?
738 : anton 1.21
739 : pazsan 1.475 bench: gforth-fast$(EXT) gforth.fi
740 : anton 1.40 @echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
741 : anton 1.143 time $(FORTH_FAST) siev.fs -e "main bye"
742 :     time $(FORTH_FAST) bubble.fs -e "main bye"
743 : anton 1.213 time $(FORTH_FAST) matrix.fs -e "main bye"
744 : anton 1.143 time $(FORTH_FAST) fib.fs -e "main bye"
745 : anton 1.40
746 : anton 1.345 onebench one-bench:
747 :     $(FORTH_FAST) onebench.fs
748 :    
749 : anton 1.379 all-bench allbench:
750 : anton 1.345 ./gforth-fast --dynamic onebench.fs
751 :     ./gforth-fast --no-dynamic onebench.fs
752 :     ./gforth --dynamic onebench.fs
753 :     ./gforth --no-dynamic onebench.fs
754 :     ./gforth-itc onebench.fs
755 :     ./gforth-ditc onebench.fs
756 : pazsan 1.240
757 : jwilke 1.106 # ------------- Make forth images
758 : anton 1.87
759 : anton 1.150 # How to make new images:
760 : jwilke 1.106 # 1. Produce an image called kernlXYZ.fi-
761 :     # the original kernel.fi is not touched because it's needed for creation
762 :     # 2. copy old kernlXYZ.fi to kernlXYZ.fi~
763 :     # that's a backup copy in case the new kernels don't work
764 :     # 3. copy new kernels to kernlXYZ.fi
765 :     # these are the ones we want to use now
766 : pazsan 1.1
767 : pazsan 1.347 kernl16l$(EC).fi-: $(KERN_DEPS) mach16l.fs
768 : anton 1.387 $(PREFORTH) -e 's" mach16l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16l$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
769 : anton 1.87
770 : pazsan 1.347 kernl16b$(EC).fi-: $(KERN_DEPS) mach16b.fs
771 : anton 1.387 $(PREFORTH) -e 's" mach16b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16b$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
772 : anton 1.87
773 : pazsan 1.347 kernl32l$(EC).fi-: $(KERN_DEPS) mach32l.fs
774 : anton 1.387 $(PREFORTH) -e 's" mach32l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32l$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
775 : anton 1.87
776 : pazsan 1.347 kernl32b$(EC).fi-: $(KERN_DEPS) mach32b.fs
777 : anton 1.387 $(PREFORTH) -e 's" mach32b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32b$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
778 : anton 1.100
779 : pazsan 1.347 kernl64l$(EC).fi-: $(KERN_DEPS) mach64l.fs
780 : anton 1.387 $(PREFORTH) -e 's" mach64l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64l$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
781 : anton 1.100
782 : pazsan 1.347 kernl64b$(EC).fi-: $(KERN_DEPS) mach64b.fs
783 : anton 1.387 $(PREFORTH) -e 's" mach64b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64b$(EC).fi- $(bindir)/gforth-$(VERSION) bye"
784 : anton 1.100
785 : anton 1.253 #Solaris make does not like that:
786 : pazsan 1.273 @GNUMAKE@kernl-%.fi: arch/%/mach.fs arch/%/prim.fs arch/%/asm.fs $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
787 : anton 1.387 @GNUMAKE@ $(PREFORTH) -e 's" $<"' $(srcdir)/kernel/main.fs -e "save-cross $@- $(bindir)/gforth-$(VERSION) bye"
788 : pazsan 1.273 @GNUMAKE@ if [ -f `echo $< | sed s/fs/sh/` ]; \
789 :     @GNUMAKE@ then sh `echo $< | sed s/fs/sh/` $@; \
790 :     @GNUMAKE@ else $(CP) $@- $@; \
791 :     @GNUMAKE@ fi
792 : pazsan 1.30
793 : anton 1.180 #SunOS make does not like that
794 :     #arch/%/mach.fs: arch/%/prim.fs arch/%/asm.fs
795 : pazsan 1.122
796 : pazsan 1.347 kernl16b$(EC).fi: $(KERNLS)
797 :     -$(CP) kernl16b$(EC).fi kernl16b$(EC).fi~
798 :     -$(CP) kernl16b$(EC).fi- kernl16b$(EC).fi
799 :    
800 :     kernl16l$(EC).fi: $(KERNLS)
801 :     -$(CP) kernl16l$(EC).fi kernl16l$(EC).fi~
802 :     -$(CP) kernl16l$(EC).fi- kernl16l$(EC).fi
803 :    
804 :     kernl32b$(EC).fi: $(KERNLS)
805 :     -$(CP) kernl32b$(EC).fi kernl32b$(EC).fi~
806 :     -$(CP) kernl32b$(EC).fi- kernl32b$(EC).fi
807 :    
808 :     kernl32l$(EC).fi: $(KERNLS)
809 :     -$(CP) kernl32l$(EC).fi kernl32l$(EC).fi~
810 :     -$(CP) kernl32l$(EC).fi- kernl32l$(EC).fi
811 :    
812 :     kernl64b$(EC).fi: $(KERNLS)
813 :     -$(CP) kernl64b$(EC).fi kernl64b$(EC).fi~
814 :     -$(CP) kernl64b$(EC).fi- kernl64b$(EC).fi
815 :    
816 :     kernl64l$(EC).fi: $(KERNLS)
817 :     -$(CP) kernl64l$(EC).fi kernl64l$(EC).fi~
818 :     -$(CP) kernl64l$(EC).fi- kernl64l$(EC).fi
819 : anton 1.89
820 : anton 1.100 #kernl%.fi: kernl%.fi- $(KERNLS)
821 :     # -$(CP) $@ $@~
822 :     # -$(CP) $< $@
823 : anton 1.87
824 : pazsan 1.475 gforth.fi: $(kernel_fi) gforthmi gforth-ditc$(EXT) $(GFORTH_FI_SRC) comp-i.fs
825 : pazsan 1.476 @NO_CROSS@GFORTHD="./gforth-ditc$(EXT) -p .$(PATHSEP)$(srcdir)" GFORTH="./gforth-ditc$(EXT) --die-on-signal -p .$(PATHSEP)$(srcdir) -i $(kernel_fi) $(STARTUP)" includedir=`pwd`/include bindir=`pwd` libccdir=`pwd`/lib/gforth$(ARCH)/$(VERSION)/libcc-named/ ./gforthmi gforth.fi $(FORTHSIZES) $(FORTHKFLAGS) $(STARTUP)
826 : anton 1.9
827 : jwilke 1.106 # ------------- Make c-engine
828 : pazsan 1.1
829 : anton 1.287 prim.b: prim cache0.vmg
830 : anton 1.431 (cd $(srcdir) && $(M4) -Dcondbranch_opt=0 prim) >$@
831 : anton 1.275 sleep 1 #should make hpux-workaround unnecessary
832 : anton 1.100
833 : anton 1.374 prim-fast.b: prim cache-fast$(STACK_CACHE_DEFAULT_FAST).vmg cache-regs$(STACK_CACHE_REGS).vmg peeprules.vmg Makefile
834 : anton 1.431 (cd $(srcdir) && $(M4) -Dcondbranch_opt=@condbranch_opt@ -DSTACK_CACHE_FILE=cache-fast$(STACK_CACHE_DEFAULT_FAST).vmg -DSTACK_CACHE_REGS=cache-regs$(STACK_CACHE_REGS).vmg prim) >$@
835 : anton 1.287 sleep 1 #should make hpux-workaround unnecessary
836 : pazsan 1.1
837 : anton 1.285 $(FORTH_GEN_ENGINE_FAST): prim-fast.b prims2x.fs
838 : pazsan 1.400 GFORTH="$(PREFORTH)" $(srcdir)/gfgen -fast
839 : anton 1.212
840 : anton 1.285 $(FORTH_GEN_ENGINE): prim.b prims2x.fs
841 : anton 1.387 GFORTH="$(PREFORTH)" $(srcdir)/gfgen
842 : anton 1.228
843 : anton 1.357 engine/prim-s.i: engine/prim.i
844 :     grep -v '^#line ' $(srcdir)/engine/prim.i >$@
845 :    
846 : anton 1.100 kernel/aliases.fs: prim.b prims2x.fs kernel/aliases0.fs
847 :     $(CP) kernel/aliases0.fs $@-
848 : anton 1.387 $(PREFORTH) prims2x.fs -e "forth-flag on s\" prim.b\" ' output-alias ' noop process-file bye" >>$@-
849 : pazsan 1.93 $(CP) $@- $@
850 :     $(RM) $@-
851 : pazsan 1.1
852 : anton 1.100 kernel/prim.fs: prim.b prims2x.fs kernel/prim0.fs
853 :     $(CP) kernel/prim0.fs kernel/prim.fs-
854 : anton 1.387 $(PREFORTH) prims2x.fs -e "forth-flag on s\" prim.b\" ' output-forth ' output-forth-combined process-file bye" >>$@-
855 : pazsan 1.203 $(CP) $@- $@
856 :     $(RM) $@-
857 : anton 1.27
858 : jwilke 1.106
859 : anton 1.380 OPTS = @OPTS@
860 :    
861 :     MAKELINE-ll-reg = OPT=-ll-reg OPTDEFINES="-DFORCE_LL -DFORCE_REG" OPTOBJECTS=
862 :     MAKELINE-noll-reg = OPT=-noll-reg OPTDEFINES=-DFORCE_REG OPTOBJECTS=dblsub.o
863 :     MAKELINE-ll = OPT=-ll OPTDEFINES=-DFORCE_LL OPTOBJECTS=
864 :     MAKELINE-noll = OPT=-noll OPTDEFINES= OPTOBJECTS=dblsub.o
865 :    
866 : pazsan 1.475 gforth$(OPT)$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE) engine/config.h @kernel_anti_dependence@
867 : anton 1.380 if test -z "$(OPT)"; then \
868 : pazsan 1.475 for i in $(OPTS); do $(MAKE) optgforth OPT=$$i && $(CP) gforth$${i}$(EXT) $@ && break; done; \
869 : anton 1.380 else \
870 :     ( cd engine && $(MAKE) $@ ) && \
871 :     $(CP) engine/$@ $@ && \
872 :     $(MASSAGE_EXE) $@; \
873 :     @GFORTH_EXE@; \
874 : pazsan 1.462 @NO_CROSS@ $(MAKE) checkone check-nofast ENGINE=./engine/$@; \
875 : anton 1.380 fi
876 :    
877 :     optgforth:
878 : pazsan 1.475 $(MAKE) gforth$(OPT)$(EXT) $(MAKELINE$(OPT))
879 : anton 1.380
880 : pazsan 1.475 gforth-fast$(OPT)$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE_FAST) engine/config.h
881 : anton 1.380 if test -z "$(OPT)"; then \
882 : pazsan 1.475 for i in $(OPTS); do $(MAKE) optgforth-fast OPT=$$i && $(CP) gforth-fast$${i}$(EXT) $@ && break; done; \
883 : anton 1.380 else \
884 : pazsan 1.482 (cd engine && $(MAKE) $@ ) && \
885 : anton 1.380 $(CP) engine/$@ $@ && \
886 :     $(MASSAGE_EXE) $@; \
887 :     @GFORTHFAST_EXE@; \
888 : pazsan 1.462 @NO_CROSS@ $(MAKE) checkone ENGINE=./engine/$@; \
889 : anton 1.380 fi
890 :    
891 :     optgforth-fast:
892 : pazsan 1.475 $(MAKE) gforth-fast$(OPT)$(EXT) $(MAKELINE$(OPT))
893 : anton 1.143
894 : pazsan 1.475 gforth-native$(OPT)$(EXT): engines-fast
895 : anton 1.231 $(CP) engine/$@ $@
896 : anton 1.340 -$(MASSAGE_EXE) $@
897 : anton 1.231 #@GFORTHX_EXE@
898 :    
899 : pazsan 1.475 gforth-itc$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE) engine/Makefile engine/config.h
900 :     cd engine && $(MAKE) gforth-itc-noll$(EXT) $(MAKELINE-noll)
901 :     $(CP) engine/gforth-itc-noll$(EXT) $@
902 : anton 1.219 @GFORTHITC_EXE@
903 :    
904 : pazsan 1.475 gforth-ditc$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE) engine/Makefile engine/config.h
905 :     cd engine && $(MAKE) gforth-ditc-noll$(EXT) $(MAKELINE-noll)
906 :     $(CP) engine/gforth-ditc-noll$(EXT) $@
907 : jwilke 1.106 @GFORTHDITC_EXE@
908 : pazsan 1.130
909 : pazsan 1.475 gforth-prof$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE) engine/Makefile engine/config.h
910 :     cd engine && $(MAKE) gforth-prof-noll$(EXT) $(MAKELINE-noll)
911 :     $(CP) engine/gforth-prof-noll$(EXT) $@
912 : anton 1.218
913 : anton 1.286 gforths: $(ENGINES) $(ENGINES_FAST)
914 : anton 1.200
915 : pazsan 1.482 #For now, we have no way to check if the engines build correctly
916 :     libgforth$(OPT)$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE) engine/config.h @kernel_anti_dependence@
917 :     if test -z "$(OPT)"; then \
918 :     for i in $(OPTS); do $(MAKE) optlibgforth OPT=$$i && $(MAKE) optlibgforth2 OPT=$$i && $(LN_S) engine/$@ $@ && break; done; \
919 :     else \
920 : pazsan 1.483 (cd engine && $(MAKE) $@ ); \
921 : pazsan 1.482 @NO_CROSS@ $(MAKE) checkone check-nofast ENGINE=./engine/$@; \
922 :     fi
923 :    
924 :     optlibgforth:
925 :     $(MAKE) libgforth$(OPT)$(EXT) $(MAKELINE$(OPT))
926 :    
927 :     optlibgforth2:
928 :     (cd engine && $(MAKE) libgforth$(EXT) $(MAKELINE$(OPT)))
929 :    
930 :     libgforth-fast$(OPT)$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE_FAST) engine/config.h
931 :     if test -z "$(OPT)"; then \
932 :     for i in $(OPTS); do $(MAKE) optlibgforth-fast OPT=$$i && $(MAKE) optlibgforth-fast2 OPT=$$i && $(LN_S) engine/$@ $@ && break; done; \
933 :     else \
934 : pazsan 1.483 (cd engine && $(MAKE) $@ ); \
935 : pazsan 1.482 @NO_CROSS@ $(MAKE) checkone ENGINE=./engine/$@; \
936 :     fi
937 :    
938 :     optlibgforth-fast:
939 :     $(MAKE) libgforth-fast$(OPT)$(EXT) $(MAKELINE$(OPT))
940 :    
941 :     optlibgforth-fast2:
942 :     (cd engine && $(MAKE) libgforth-fast$(EXT) $(MAKELINE$(OPT)))
943 :    
944 :     libgforth-itc$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE) engine/Makefile engine/config.h
945 :     cd engine && $(MAKE) libgforth-itc$(EXT) $(MAKELINE-noll)
946 :    
947 :     libgforth-ditc$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE) engine/Makefile engine/config.h
948 :     cd engine && $(MAKE) libgforth-ditc$(EXT) $(MAKELINE-noll)
949 :    
950 :     libgforth-prof$(EXT): $(ENGINE_SOURCES) $(FORTH_GEN_ENGINE) engine/Makefile engine/config.h
951 :     cd engine && $(MAKE) libgforth-prof$(EXT) $(MAKELINE-noll)
952 :    
953 :     libgforths: $(ENGINES:%$(EXT)=lib%) $(ENGINES_FAST:%$(EXT)=lib%)
954 :    
955 : pazsan 1.107 # ------------- additional C primitives
956 :    
957 : pazsan 1.423 .SUFFIXES: .c .pri
958 :    
959 :     .pri.c: $< prim2cl.fs
960 : pazsan 1.107 $(FORTHK) prim2cl.fs -e "file $< altogether bye" >$@
961 :    
962 : pazsan 1.423 .c.so: $<
963 : anton 1.394 $(GCC) -shared $(CFLAGS) $(CPPFLAGS) $< -o $@
964 : jwilke 1.106
965 :     # ------------- Make Documentation
966 :    
967 :     #TAGS is a GNU standard target
968 :     TAGS: gforth.TAGS
969 :     $(CP) gforth.TAGS $@
970 :    
971 : pazsan 1.211 tags: gforth.tags
972 :     $(CP) gforth.tags $@
973 :    
974 : anton 1.435 install.TAGS: TAGS install-tags.fs
975 : pazsan 1.471 sed 's;^\$(srcdir)/;;' TAGS|$(PREFORTH) -e 's" '$(datadir)/gforth/$(VERSION)/'"' $(srcdir)/install-tags.fs -e bye >install.TAGS
976 : anton 1.131
977 : pazsan 1.475 gforth.TAGS: @kernel_fi@ gforth$(EXT) $(GFORTH_FI_SRC) prim.TAGS kernel.TAGS
978 : pazsan 1.181 $(FORTHK) etags.fs except.fs startup.fs -e bye
979 : jwilke 1.106 cat TAGS prim.TAGS kernel.TAGS >gforth.TAGS
980 :     rm TAGS
981 :    
982 : pazsan 1.475 gforth.tags: @kernel_fi@ gforth$(EXT) $(GFORTH_FI_SRC) prim.tags kernel.tags
983 : pazsan 1.211 $(FORTHK) tags.fs except.fs startup.fs -e bye
984 :     cat tags prim.tags kernel.tags >gforth.tags
985 :     rm tags
986 :    
987 : anton 1.100 prim.TAGS: prim.b prims2x.fs
988 : anton 1.387 $(PREFORTH) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-tag dup process-file bye"|sed 's#^./prim#prim#' >$@-
989 : pazsan 1.93 $(CP) $@- $@
990 :     $(RM) $@-
991 : anton 1.190
992 : pazsan 1.211 prim.tags: prim.b prims2x.fs
993 :     #echo '2c\' >prim.TAGS.sed
994 :     #echo $(srcdir)/prim >>prim.TAGS.sed
995 : anton 1.387 #$(PREFORTH) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-tag dup process-file bye" | sed -f prim.TAGS.sed >$@-
996 :     $(PREFORTH) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-vi-tag dup process-file bye" >$@-
997 : pazsan 1.211 $(CP) $@- $@
998 :     $(RM) $@-
999 :    
1000 : anton 1.190 kernel.TAGS:
1001 : anton 1.432 $(RM) kernl16l$(EC).fi-; $(MAKE) @kernel_fi@
1002 : pazsan 1.211
1003 :     kernel.tags:
1004 : anton 1.432 $(RM) kernl16l$(EC).fi-; $(MAKE) @kernel_fi@
1005 : pazsan 1.1
1006 : anton 1.362 #elc files
1007 :     gforth.elc: gforth.el
1008 : anton 1.432 -$(EMACS) -batch -f batch-byte-compile gforth.el
1009 : anton 1.362
1010 :     #Documentation
1011 :    
1012 : crook 1.151 doc/doc.fd: doc/makedoc.fs $(GFORTH_FI_SRC) code.fs objects.fs oof.fs moofglos.fs
1013 : pazsan 1.369 $(FORTHK) -e "s\" doc/doc.fd\"" doc/makedoc.fs except.fs startup.fs code.fs objects.fs oof.fs moofglos.fs regexp.fs fft.fs -e bye
1014 : anton 1.20
1015 : anton 1.100 doc/crossdoc.fd: $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
1016 :     $(FORTHK) -e 's" mach32l.fs"' kernel/main.fs -e bye
1017 : anton 1.35
1018 : anton 1.387 doc/gforth.texi: doc/gforth.ds prim.b ds2texi.fs prims2x.fs \
1019 : anton 1.100 doc/doc.fd doc/crossdoc.fd
1020 : anton 1.387 $(PREFORTH) ds2texi.fs prims2x.fs -e "s\" $(srcdir)/prim.b\" ' register-doc ' noop process-file" doc/crossdoc.fd doc/doc.fd -e "s\" $(srcdir)/doc/gforth.ds\" r/o open-file throw ds2texi bye" >$@-
1021 : pazsan 1.93 $(CP) $@- $@
1022 :     $(RM) $@-
1023 : anton 1.35
1024 : anton 1.100 checkdoc: doc/gforth.ds prim.b ds2texi.fs prims2x.fs doc/doc.fd doc/crossdoc.fd answords.fs doc/gforth.texi
1025 : anton 1.213 $(FORTH) ds2texi.fs prims2x.fs -e "s\" $(srcdir)/prim.b\" ' register-doc ' noop process-file" doc/crossdoc.fd doc/doc.fd answords.fs -e bye
1026 : anton 1.100 -grep unknown doc/gforth.texi
1027 : anton 1.419 -grep doc- doc/gforth.texi| grep -v '^@c'
1028 : anton 1.66
1029 : anton 1.223 dvi: doc/gforth.dvi doc/vmgen.dvi
1030 : pazsan 1.1
1031 : pazsan 1.278 pdf: doc/gforth.pdf doc/vmgen.pdf
1032 :    
1033 : anton 1.111 doc/gforth.dvi doc/gforth.fns: $(GFORTH_TEXI)
1034 : anton 1.100 cd doc; $(TEXI2DVI) gforth.texi
1035 : anton 1.5
1036 : pazsan 1.278 doc/gforth.pdf: $(GFORTH_TEXI)
1037 :     cd doc; $(TEXI2PDF) gforth.texi
1038 :    
1039 : anton 1.223 doc/vmgen.dvi: $(VMGEN_TEXI)
1040 :     cd doc; $(TEXI2DVI) vmgen.texi
1041 : pazsan 1.278
1042 :     doc/vmgen.pdf: $(VMGEN_TEXI)
1043 :     cd doc; $(TEXI2PDF) vmgen.texi
1044 : anton 1.223
1045 : anton 1.100 doc/gforth.ps: doc/gforth.dvi
1046 :     $(DVI2PS) doc/gforth.dvi -o $@
1047 : anton 1.40
1048 : anton 1.226 doc/vmgen.ps: doc/vmgen.dvi
1049 :     $(DVI2PS) doc/vmgen.dvi -o $@
1050 :    
1051 : anton 1.223 info: doc/gforth.info doc/vmgen.info
1052 :    
1053 :     doc/gforth.info: $(GFORTH_TEXI)
1054 :     cd doc; $(MAKEINFO) gforth.texi
1055 :    
1056 :     doc/vmgen.info: $(VMGEN_TEXI)
1057 :     cd doc; $(MAKEINFO) vmgen.texi
1058 : anton 1.66
1059 : anton 1.15
1060 : anton 1.224 ### need makeinfo 4.2 to generate html with these rules
1061 :     doc/gforth: $(GFORTH_TEXI)
1062 :     cd doc; $(MAKEINFO) --html gforth.texi
1063 :    
1064 :     doc/vmgen: $(VMGEN_TEXI)
1065 :     cd doc; $(MAKEINFO) --html vmgen.texi
1066 : anton 1.114
1067 :     doc/gforth.txt: $(GFORTH_TEXI)
1068 :     -cd doc; $(MAKEINFO) --no-headers --no-split gforth.texi >gforth.txt
1069 : anton 1.224
1070 :     doc/vmgen.txt: $(VMGEN_TEXI)
1071 :     -cd doc; $(MAKEINFO) --no-headers --no-split vmgen.texi >vmgen.txt
1072 : pazsan 1.63
1073 : pazsan 1.274 doc: gforth.fi info doc/gforth doc/vmgen doc/gforth.ps doc/vmgen.ps doc/gforth.txt doc/vmgen.txt TAGS
1074 : pazsan 1.1
1075 : anton 1.9 # For an explanation of the following Makefile rules, see node
1076 :     # `Automatic Remaking' in GNU Autoconf documentation.
1077 : anton 1.159
1078 :     #Note: no target "$(srcdir)/configure", because that does not trigger
1079 :     #unless $(srcdir)!="."
1080 : anton 1.236 configure: configure.in aclocal.m4
1081 :     cd $(srcdir) && autoconf
1082 : anton 1.111
1083 : anton 1.236 aclocal.m4: configure.in
1084 : anton 1.398 aclocal
1085 : pazsan 1.69
1086 : anton 1.51 # autoheader might not change config.h.in, so touch a stamp file.
1087 : anton 1.236 engine/config.h.in: stamp-h.in
1088 :     stamp-h.in: configure.in aclocal.m4
1089 :     cd $(srcdir) && autoheader
1090 :     echo timestamp > $(srcdir)/stamp-h.in
1091 :    
1092 :     engine/config.h: stamp-h
1093 : pazsan 1.317 stamp-h: engine/config.h.in config.status stamp-h.in
1094 : anton 1.236 ./config.status
1095 : anton 1.112
1096 : pazsan 1.474 Makefile Makedist engine/Makefile gforthmi vmgen preforth machpc.fs doc/version.texi envos.fs build-ec: Makefile.in Makedist.in engine/Makefile.in gforthmi.in vmgen.in preforth.in libforth.in machpc.fs.in doc/version.texi.in config.status configure.in envos.fs.in build-ec.in engine/libcc.h.in
1097 : anton 1.236 ./config.status
1098 : anton 1.112
1099 : anton 1.236 config.status: configure
1100 :     ./config.status --recheck
1101 : anton 1.51
1102 :     #create files for DOS, because DOS cannot do it itself
1103 : pazsan 1.441 makefile.dos: mkdosmf.sed Makefile.in
1104 : pazsan 1.30 sed -f mkdosmf.sed <Makefile.in >makefile.dos
1105 : pazsan 1.441
1106 :     engine/makefile.dos: mkdosmf.sed engine/Makefile.in
1107 : anton 1.100 sed -f mkdosmf.sed <engine/Makefile.in >engine/makefile.dos
1108 : pazsan 1.69
1109 : pazsan 1.441 makefile.os2: mkos2mf.sed Makefile.in
1110 : pazsan 1.69 sed -f mkos2mf.sed <Makefile.in >makefile.os2
1111 : pazsan 1.441 echo '%.o: %.c' >>makefile.os2
1112 :     echo ' $$(GCC) $$(CFLAGS) $$(CPPFLAGS) -c $$<' >>makefile.os2
1113 :    
1114 :     engine/makefile.os2: mkos2mf.sed engine/Makefile.in
1115 : anton 1.100 sed -f mkos2mf.sed <engine/Makefile.in >engine/makefile.os2
1116 : pazsan 1.441 echo '%.o: %.c' >>engine/makefile.os2
1117 :     echo ' $$(GCC) $$(CFLAGS) $$(CPPFLAGS) -c $$<' >>engine/makefile.os2

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help