[gforth] / gforth / Makefile.in  

gforth: gforth/Makefile.in


1 : anton 1.38 #Makefile for Gforth
2 :    
3 : anton 1.188 #Copyright (C) 1995,1996,1997,1998,2000 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 : anton 1.189 #Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
20 : anton 1.38
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.236 VERSION = @PACKAGE_VERSION@
34 : pazsan 1.181 DOSVERSION=`echo $(VERSION)|sed 's/\.//g'|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 : anton 1.183 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.220 FORTHS_ARGS = -p $(FORTHPATH)$(PATHSEP)$(srcdir)
68 :     FORTH_ARGS = --die-on-signal $(FORTHS_ARGS)
69 : anton 1.143 ENGINE = ./gforth
70 :     FORTH = $(ENGINE) $(FORTH_ARGS)
71 : anton 1.220 FORTHS = $(ENGINE) $(FORTHS_ARGS)
72 : jwilke 1.205 # the (existing) forth system to use for cross compiling and primitives tables
73 : jwilke 1.208 # per default we use the one in this directory for a rebuild. It is also
74 :     # possible to override this variable at the command line for an initial build (jaw)
75 : pazsan 1.214 BUILDFORTH = $(ENGINE) --die-on-signal -m 4M -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)" -i $(kernel_fi)
76 : jwilke 1.205 # the forth system plus flags we use to build
77 : anton 1.213 FORTHB = $(BUILDFORTH) -e 'fpath= .|~+|$(srcdir)'
78 : anton 1.206 # the Forth system for running prims2x.fs
79 : anton 1.226 FORTHP = $(FORTH)
80 : anton 1.143 ENGINE_FAST = $(ENGINE)-fast
81 :     FORTH_FAST = $(ENGINE_FAST) $(FORTH_ARGS)
82 : anton 1.213 FORTHKFLAGS= --die-on-signal -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)" -i $(kernel_fi)
83 : anton 1.152 FORTHK = $(ENGINE) $(FORTHKFLAGS)
84 : anton 1.206 #FORTHP = $(ENGINE) --die-on-signal -i ./$(kernel_fi)
85 : anton 1.183 #the "-2 image-included-files +!" undoes the change to image-included-files
86 :     # in exboot.fs
87 : pazsan 1.184 STARTUP = -e 3 exboot.fs startup.fs @asm_fs@ @disasm_fs@
88 : anton 1.22 STRIP = strip
89 : anton 1.169 TEXI2DVI = texi2dvi -e
90 : anton 1.114 DVI2PS = dvips -Z
91 : anton 1.99 #you can get texi2html from http://wwwcn.cern.ch/dci/texi2html/
92 : anton 1.170 MAKEINFO = makeinfo
93 : anton 1.15 TEXI2HTML = texi2html
94 : jwilke 1.106
95 :     # ------------- Compiler Flags
96 :    
97 : anton 1.9 XCFLAGS = @CFLAGS@
98 :     XDEFINES = @DEFS@
99 : anton 1.12 SWITCHES = $(XCFLAGS) $(XDEFINES) #-DNDEBUG #turn off assertions
100 : pazsan 1.48 ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves
101 : pazsan 1.30 DEBUGFLAG = @DEBUGFLAG@
102 : pazsan 1.154 CFLAGS = $(DEBUGFLAG) -I$(srcdir)/engine -I$(srcdir)/arch/$(machine) -O3 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(FORTHPATH)\"
103 : pazsan 1.1
104 :     #John Wavrik should use -Xlinker -N to get a writable text (executable)
105 : pazsan 1.30 XLDFLAGS = @LDFLAGS@
106 : anton 1.117 LDFLAGS = $(DEBUGFLAG) $(XLDFLAGS)
107 : anton 1.9 LDLIBS = @LIBS@
108 :    
109 : jwilke 1.106 # ------------ Install Directorys
110 :    
111 : anton 1.52 VPATH = @srcdir@
112 : anton 1.9 prefix = @prefix@
113 :     exec_prefix = @exec_prefix@
114 :     srcdir = @srcdir@
115 :     bindir = $(exec_prefix)/bin
116 :     #read-only architecture-independent files
117 :     datadir = $(prefix)/share
118 :     #read-only architecture-dependent non-ascii files
119 :     libdir = $(prefix)/lib
120 :     infodir = $(prefix)/info
121 : anton 1.52 mandir = $(prefix)/man
122 :     man1dir= $(mandir)/man1
123 :     man1ext= .1
124 :     #older emacses have their site-lisp in $(libdir)/emacs/
125 : anton 1.110 emacssitelispdir=@lispdir@
126 : anton 1.141 siteforthdir=$(datadir)/gforth/site-forth
127 : pazsan 1.1
128 : pazsan 1.124 CVSDIRS = CVS engine/CVS kernel/CVS doc/CVS asm/CVS ec/CVS test/CVS \
129 : pazsan 1.192 compat/CVS unix/CVS \
130 : pazsan 1.124 arch/CVS arch/generic/CVS arch/m68k/CVS arch/mips/CVS \
131 :     arch/386/CVS arch/hppa/CVS arch/sparc/CVS arch/power/CVS \
132 :     arch/alpha/CVS arch/4stack/CVS arch/misc/CVS arch/6502/CVS \
133 :     arch/8086/CVS arch/avr/CVS arch/c165/CVS arch/h8/CVS \
134 : pazsan 1.192 arch/shboom/CVS arch/sharc/CVS arch/ia64/CVS
135 : pazsan 1.124
136 : anton 1.135 INCLUDES = engine/forth.h engine/threaded.h engine/io.h
137 :    
138 : anton 1.52 KERN_SRC = \
139 : jwilke 1.155 mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
140 : pazsan 1.204 machpc.fs.in \
141 : anton 1.100 kernel/aliases0.fs \
142 :     kernel/aliases.fs \
143 :     kernel/args.fs \
144 : anton 1.118 chains.fs \
145 : pazsan 1.173 kernel/cbr.fs \
146 :     kernel/cloop.fs \
147 : anton 1.100 kernel/cond.fs \
148 :     kernel/cond-old.fs \
149 : anton 1.52 cross.fs \
150 : anton 1.100 kernel/errore.fs \
151 :     kernel/files.fs \
152 :     kernel/require.fs \
153 :     kernel/paths.fs \
154 :     kernel/kernel.fs \
155 :     kernel/main.fs \
156 :     kernel/prim0.fs \
157 :     search.fs \
158 : jwilke 1.156 kernel/quotes.fs \
159 : anton 1.100 kernel/tools.fs \
160 :     kernel/toolsext.fs \
161 :     kernel/vars.fs \
162 :     kernel/accept.fs \
163 :     kernel/basics.fs \
164 : pazsan 1.107 kernel/int.fs \
165 :     kernel/comp.fs \
166 : anton 1.100 kernel/io.fs \
167 : pazsan 1.192 kernel/input.fs \
168 : anton 1.100 kernel/license.fs \
169 :     kernel/nio.fs \
170 : pazsan 1.108 kernel/saccept.fs \
171 :     kernel/doers.fs \
172 : jwilke 1.157 kernel/getdoers.fs \
173 :     kernel/pass.fs
174 : anton 1.52
175 : pazsan 1.107 EC_SRC = \
176 : anton 1.118 asm/README \
177 : pazsan 1.107 asm/bitmask.fs \
178 :     asm/numref.fs \
179 :     asm/basic.fs \
180 :     asm/generic.fs \
181 :     asm/target.fs \
182 : anton 1.118 ec/README \
183 : pazsan 1.107 ec/mirror.fs \
184 :     ec/shex.fs \
185 :     ec/builttag.fs \
186 :     ec/dotx.fs \
187 :     ec/nesting.fs
188 :    
189 : anton 1.52 GFORTH_FI_SRC = \
190 :     assert.fs \
191 : pazsan 1.181 backtrac.fs \
192 : anton 1.100 blocked.fb \
193 : anton 1.52 blocks.fs \
194 :     bufio.fs \
195 : anton 1.235 code.fs \
196 : anton 1.52 debug.fs \
197 : anton 1.100 debugs.fs \
198 : anton 1.162 ekey.fs \
199 : anton 1.100 savesys.fs \
200 : anton 1.52 environ.fs \
201 : pazsan 1.82 errors.fs \
202 : anton 1.172 exboot.fs \
203 : pazsan 1.181 except.fs \
204 : pazsan 1.82 extend.fs \
205 : anton 1.52 float.fs \
206 :     glocals.fs \
207 :     hash.fs \
208 :     history.fs \
209 : anton 1.64 intcomp.fs \
210 : pazsan 1.101 locals.fs \
211 : anton 1.52 look.fs \
212 : anton 1.221 quotes.fs \
213 : anton 1.100 search.fs \
214 : anton 1.52 see.fs \
215 : pazsan 1.85 see-ext.fs \
216 : anton 1.207 simp-see.fs \
217 : anton 1.52 source.fs \
218 :     startup.fs \
219 :     struct.fs \
220 :     stuff.fs \
221 : pazsan 1.60 tasker.fs \
222 : anton 1.52 termsize.fs \
223 :     vt100.fs \
224 :     vt100key.fs \
225 : pazsan 1.101 wordinfo.fs \
226 : anton 1.178 arch/386/asm.fs arch/386/disasm.fs \
227 : anton 1.175 arch/alpha/asm.fs arch/alpha/disasm.fs \
228 : anton 1.180 arch/mips/asm.fs arch/mips/disasm.fs arch/mips/insts.fs
229 : anton 1.52
230 : pazsan 1.107 FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_SRC) $(EC_SRC) \
231 : anton 1.75 ans-report.fs ansi.fs answords.fs \
232 : anton 1.235 colorize.fs comp-i.fs \
233 : anton 1.52 doskey.fs ds2texi.fs \
234 : pazsan 1.124 envos.fs envos.dos envos.os2 etags.fs filedump.fs fi2c.fs \
235 : pazsan 1.192 glosgen.fs gray.fs httpd.fs proxy.fs \
236 : anton 1.160 make-app.fs doc/makedoc.fs \
237 : jwilke 1.155 more.fs other.fs prims2x.fs random.fs \
238 : pazsan 1.167 table.fs string.fs \
239 : anton 1.52 tt.fs sokoban.fs \
240 : pazsan 1.181 unbuffer.fs wordsets.fs \
241 : anton 1.100 test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs \
242 : anton 1.230 test/string.fs test/float.fs \
243 :     test/other.fs test/signals.fs test/checkans.fs \
244 : pazsan 1.65 bubble.fs siev.fs matrix.fs fib.fs \
245 : crook 1.151 oof.fs oofsampl.fs objects.fs objexamp.fs mini-oof.fs moof-exm.fs \
246 : pazsan 1.195 moofglos.fs fixpath.fs \
247 : pazsan 1.192 add.fs lib.fs sieve.fs unix/socket.fs
248 : pazsan 1.1
249 : anton 1.131 COMPAT = compat/README \
250 :     compat/anslocal.fs \
251 :     compat/assert.fs \
252 :     compat/control.fs \
253 :     compat/defer.fs \
254 :     compat/exception.fs \
255 :     compat/loops.fs \
256 :     compat/required.fs \
257 : anton 1.227 compat/strcomp.fs \
258 : anton 1.131 compat/struct.fs \
259 :     compat/vocabulary.fs
260 : anton 1.100
261 : anton 1.111 GFORTH_TEXI = doc/gforth.texi doc/version.texi
262 :    
263 : anton 1.223 VMGEN_TEXI = doc/vmgen.texi doc/version.texi doc/fdl.texi
264 :    
265 : anton 1.100 ALLSUBDIRS = engine
266 :    
267 : anton 1.135 ARCHS = \
268 :     arch/generic/machine.h \
269 :     arch/m68k/machine.h \
270 :     arch/mips/machine.h \
271 :     arch/386/machine.h \
272 :     arch/hppa/machine.h \
273 :     arch/hppa/cache.c \
274 :     arch/sparc/machine.h \
275 :     arch/power/machine.h \
276 :     arch/power/_sync_cache_range.c \
277 : anton 1.179 arch/power/elf32ppc.x \
278 : anton 1.135 arch/alpha/machine.h \
279 : anton 1.185 arch/ia64/machine.h \
280 : anton 1.135 arch/4stack/README \
281 :     arch/4stack/asm.fs \
282 :     arch/4stack/mach.fs \
283 :     arch/4stack/prim.fs \
284 :     arch/4stack/mach.sh \
285 :     arch/4stack/relocate.fs \
286 :     arch/misc/README \
287 :     arch/misc/asm.fs \
288 :     arch/misc/mach.fs \
289 :     arch/misc/prim.fs \
290 :     arch/misc/sim.fs \
291 :     arch/misc/sokoban.fs \
292 :     arch/misc/tt.fs \
293 :     arch/6502/asm.fs \
294 :     arch/6502/prim.fs \
295 :     arch/6502/mach.fs \
296 :     arch/6502/zero.fs \
297 :     arch/6502/softuart.fs \
298 :     arch/6502/cold.fs \
299 :     arch/8086/asm.fs \
300 :     arch/8086/mach.fs \
301 :     arch/8086/mach.sh \
302 :     arch/8086/prim.fs \
303 :     arch/avr/asm.fs \
304 :     arch/c165/asm.fs \
305 :     arch/c165/mach.fs \
306 :     arch/c165/prim.fs \
307 :     arch/h8/asm.fs \
308 :     arch/shboom/asm.fs \
309 :     arch/shboom/compiler.fs \
310 :     arch/shboom/dis.fs \
311 :     arch/shboom/mach.fs \
312 :     arch/shboom/prim.fs \
313 :     arch/shboom/dis2.fs \
314 :     arch/shboom/sh.p \
315 : pazsan 1.192 arch/shboom/doers.fs \
316 :     arch/sharc/mach.fs \
317 :     arch/sharc/machine.h \
318 :     arch/sharc/compile.sharc \
319 :     arch/sharc/unistd.h \
320 :     arch/sharc/systypes.h \
321 :     arch/sharc/types.h \
322 :     arch/sharc/g21k-3.3.4-bp1.diff
323 : anton 1.135
324 : anton 1.206 VMGEN_EX = vmgen-ex/CVS vmgen-ex/Makefile vmgen-ex/README vmgen-ex/disasm.c \
325 :     vmgen-ex/engine.c vmgen-ex/fib.mini \
326 :     vmgen-ex/mini-inst.vmg vmgen-ex/mini-super.vmg vmgen-ex/mini.h \
327 :     vmgen-ex/mini.l vmgen-ex/mini.y vmgen-ex/peephole-blacklist \
328 :     vmgen-ex/peephole.c vmgen-ex/profile.c vmgen-ex/seq2rule.awk \
329 :     vmgen-ex/simple.mini vmgen-ex/stat.awk vmgen-ex/support.c \
330 :     vmgen-ex/test.mini vmgen-ex/test.out
331 :    
332 : anton 1.226 VMGEN_EX2 = $(VMGEN_EX:vmgen-ex/%=vmgen-ex2/%)
333 :    
334 : anton 1.206 SOURCES = $(CVSDIRS) compat Makefile.in Makedist.in engine/Makefile.in \
335 : anton 1.226 gforthmi.in vmgen.in README.vmgen NEWS.vmgen \
336 : anton 1.135 configure.in configure config.sub config.guess elisp-comp missing \
337 : anton 1.236 acconfig.h engine/config.h.in stamp-h.in \
338 : pazsan 1.195 iss.sh install-sh INSTALL INSTALL.BINDIST NEWS README ToDo BUGS model \
339 : anton 1.222 COPYING COPYING.DOC AUTHORS ChangeLog Benchres aclocal.m4 \
340 : anton 1.135 doc/gforth.ds doc/texinfo.tex doc/gforth.1 doc/version.texi.in \
341 : anton 1.222 doc/vmgen.texi doc/fdl.texi \
342 : anton 1.135 gforth.el \
343 : anton 1.207 prim peeprules.vmg engine/engine.c engine/main.c \
344 : anton 1.206 engine/io.c engine/memcmpc.c engine/signals.c $(ARCHS) \
345 : anton 1.207 engine/peephole.c engine/profile.c \
346 : anton 1.135 engine/getopt.c engine/getopt1.c engine/getopt.h engine/select.c \
347 :     engine/ecvt.c engine/memcmp.c engine/strtol.c engine/strtoul.c \
348 :     engine/ansidecl.h engine/memmove.c \
349 :     engine/pow10.c engine/atanh.c engine/cleanalign.c \
350 :     engine/strerror.c engine/strsignal.c engine/dblsub.c \
351 : anton 1.177 engine/fnmatch.h engine/fnmatch.c \
352 : anton 1.135 INSTALL.DOS makefile.dos engine/makefile.dos mkdosmf.sed config.bat \
353 : anton 1.141 dosconf.h gforthmi.bat mkinstalldirs siteinit.fs \
354 : anton 1.135 versions.bsh \
355 :     configure.cmd mkos2mf.sed os2conf.h makefile.os2 engine/makefile.os2 \
356 :     gforthmi.cmd glosgen.glo doc/glossaries.doc \
357 : anton 1.226 $(INCLUDES) $(FORTH_SRC) $(COMPAT) $(VMGEN_EX) $(VMGEN_EX2) \
358 : anton 1.158 timings.sc \
359 :     test/coretest.out test/checkans.out
360 : anton 1.135
361 : anton 1.5 RCS_FILES = ToDo model high-level
362 : pazsan 1.1
363 : anton 1.236 GEN = gforth$(EXE) gforth-ditc$(EXE) gforth-fast$(EXE) gforth-itc$(EXE) kernel/version.fs
364 :     #gforth-native$(EXE) gforth-prof$(EXE)
365 : pazsan 1.1
366 :     # things that need a working forth system to be generated
367 : anton 1.232 FORTH_GEN_ENGINE=engine/prim.i engine/prim_lab.i engine/prim_names.i \
368 :     engine/prim_superend.i engine/peephole.i engine/profile.i \
369 :     engine/prim_num.i
370 : anton 1.217 FORTH_GEN0 = prim.b $(FORTH_GEN_ENGINE) kernel/aliases.fs kernel/prim.fs
371 : pazsan 1.65 FORTH_GEN = $(FORTH_GEN0) @KERNEL@ gforth.fi
372 : pazsan 1.1 # this is used for antidependences,
373 : pazsan 1.65 FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@
374 : anton 1.5
375 : anton 1.227 #kernel dependencies
376 :     KERN_DEPS = $(KERN_SRC) kernel/version.fs machpc.fs $(FORTH_GEN0) compat/strcomp.fs
377 :    
378 : anton 1.38 #distributed documentation
379 : anton 1.139 DOCDIST = doc/gforth.info doc/gforth.info-* doc/gforth.ps
380 : anton 1.5
381 : pazsan 1.48 KERNLS = kernl16b.fi- kernl16l.fi- \
382 :     kernl32b.fi- kernl32l.fi- \
383 :     kernl64b.fi- kernl64l.fi-
384 : pazsan 1.30
385 : anton 1.223 GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) \
386 :     doc/gforth.texi doc/gforth.dvi doc/gforth.ps \
387 :     doc/vmgen.dvi doc/vmgen.ps \
388 :     Makefile Makedist engine/Makefile configure
389 : pazsan 1.1
390 : anton 1.9 #standards.info recommends this:
391 :     .SUFFIXES:
392 :     .SUFFIXES: .c .o
393 :    
394 : jwilke 1.106
395 : anton 1.100 all: kernel/version.fs more
396 : pazsan 1.1
397 : jwilke 1.106 # use this dependency for phony targets just as mostlyclean,...
398 :     FORCE: ;
399 :    
400 : anton 1.78 #this rule avoids remaking everything after minor changes in Makefile.in
401 : anton 1.207 version: Makefile.in configure.in
402 : anton 1.94 if test -r $@ && test x'$(VERSION)' = x`cat $@` ; then true ; else echo $(VERSION) > $@ ; fi
403 : anton 1.78
404 : jwilke 1.106 # With dos we use normal dos echo
405 :     # we cannot pipe the output to engine/version.h directly because
406 :     # of the "/ and \" problem. Copying works because we use the
407 :     # shell und file utilities.
408 :    
409 : anton 1.100 kernel/version.fs: version
410 : pazsan 1.123 $(MAKE) gforth$(EXE)
411 : pazsan 1.129 echo ": version-string s\" $(VERSION)\" ;" > kernel/version.fs
412 : pazsan 1.2
413 : anton 1.218 more: engines $(FORTH_GEN) $(GEN)
414 : pazsan 1.2
415 : pazsan 1.1 #from the gcc Makefile:
416 :     #"Deletion of files made during compilation.
417 :     # There are four levels of this:
418 :     # `mostlyclean', `clean', `distclean' and `realclean'.
419 :     # `mostlyclean' is useful while working on a particular type of machine.
420 :     # It deletes most, but not all, of the files made by compilation.
421 :     # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
422 :     # `clean' deletes everything made by running `make all'.
423 :     # `distclean' also deletes the files made by config.
424 :     # `realclean' also deletes everything that could be regenerated automatically."
425 :    
426 : jwilke 1.106 mostlyclean: FORCE
427 : anton 1.118 -$(RM) -rf engine/*.s gforth.fi *.fi~ *.fi- kernel/version.fs \
428 :     *TAGS gforth~ \
429 : anton 1.100 doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
430 :     doc/gforth.aux doc/gforth.cp doc/gforth.cps \
431 :     doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
432 :     doc/gforth.pg \
433 :     doc/gforth.toc doc/gforth.tp doc/gforth.vr html \
434 : anton 1.110 gforth-$(VERSION).tar.gz
435 : anton 1.45
436 : crook 1.146 # Just the stuff needed to rebuild the documentation nac03feb1999
437 :     docclean: FORCE
438 :     -$(RM) -rf doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
439 :     doc/gforth.aux doc/gforth.cp doc/gforth.cps \
440 :     doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
441 :     doc/gforth.pg \
442 :     doc/gforth.toc doc/gforth.tp doc/gforth.vr html
443 :    
444 : anton 1.45 clean: mostlyclean
445 : anton 1.143 -$(RM) -rf $(GEN) engine/gforth$(EXE) \
446 : anton 1.231 engine/gforth-fast$(EXE) engine/gforth-native$(EXE) engine/gforth-itc$(EXE) \
447 : anton 1.219 engine/gforth-ditc$(EXE) engine/gforth-prof$(EXE) \
448 : anton 1.119 *.o engine/*.o arch/*/*.o version
449 : pazsan 1.1
450 :     distclean: clean
451 : anton 1.118 -$(RM) config.cache config.log config.status \
452 : pazsan 1.134 engine/config.h Makefile Makedist engine/Makefile \
453 : anton 1.118 stamp-h engine/stamp-h \
454 : anton 1.206 doc/version.texi gforthmi vmgen
455 : pazsan 1.1
456 : anton 1.53 #realclean is useless, but dangerous, so it's commented out
457 : pazsan 1.174 realclean: distclean
458 :     -$(RM) $(GEN_PRECIOUS)
459 : pazsan 1.1
460 : anton 1.45 #mostlyclean, but also remove some of the stuff that is distributed
461 :     virtualclean: mostlyclean
462 :     -$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \
463 : anton 1.59 gforth-$(VERSION).tar.gz config.cache *~ */*~
464 : anton 1.45
465 : anton 1.135 #Some makes (Ultrix, SunOS, IRIX) are so broken, they cannot read the
466 :     #Makefile if it contains our dist rules. Therefore we have put these
467 :     #rules in Makedist (you can use them with GNU make on these systems).
468 : anton 1.136 dist: Makedist FORCE
469 : anton 1.135 $(MAKE) -f Makedist d$@
470 : pazsan 1.134
471 : anton 1.136 dosdist: Makedist FORCE
472 : anton 1.135 $(MAKE) -f Makedist d$@
473 : pazsan 1.134
474 : anton 1.136 srcdist: Makedist FORCE
475 : anton 1.135 $(MAKE) -f Makedist d$@
476 : pazsan 1.134
477 : anton 1.136 srconlydist: Makedist FORCE
478 : anton 1.135 $(MAKE) -f Makedist d$@
479 : pazsan 1.134
480 : anton 1.136 docdist: Makedist FORCE
481 : anton 1.135 $(MAKE) -f Makedist d$@
482 : pazsan 1.134
483 : anton 1.136 htmldist: Makedist FORCE
484 : anton 1.135 $(MAKE) -f Makedist d$@
485 : pazsan 1.1
486 : anton 1.136 bindist: Makedist FORCE
487 : anton 1.135 $(MAKE) -f Makedist d$@
488 :    
489 : anton 1.136 binonlydist: Makedist FORCE
490 : anton 1.135 $(MAKE) -f Makedist d$@
491 : anton 1.22
492 :    
493 : anton 1.15 #strip gforth, because the debugging stuff is hardly useful once
494 : anton 1.187 # gforth manages to execute more than a few primitives.
495 : anton 1.15
496 : anton 1.68 #install does not depend on gforth.info, because that would require
497 :     #supplying a lot of files that can be easily generated (only info is
498 : anton 1.187 #hard to generate).
499 :     #we rebuild gforth.fi, because it contains some path names.
500 :     #we delete $build/gforth.fi and $build/install.TAGS after installation because of ownership.
501 : anton 1.206 install: gforth$(EXE) $(FORTH_SRC) $(kernel_fi) gforth.fi gforthmi vmgen doc/gforth.1 prim install.TAGS installdirs
502 : anton 1.141 touch $(siteforthdir)/siteinit.fs
503 : anton 1.206 -$(RM) $(bindir)/gforth$(EXE) $(bindir)/gforth-$(VERSION)$(EXE) $(bindir)/gforthmi $(bindir)/vmgen
504 : anton 1.147 -$(RM) $(bindir)/gforth-fast$(EXE) $(bindir)/gforth-fast-$(VERSION)$(EXE)
505 : anton 1.131 $(INSTALL_PROGRAM) -s gforth$(EXE) $(bindir)/gforth-$(VERSION)$(EXE)
506 : anton 1.150 (cd $(bindir) && $(LN_S) gforth-$(VERSION)$(EXE) gforth$(EXE))
507 : anton 1.143 $(INSTALL_PROGRAM) -s gforth-fast$(EXE) $(bindir)/gforth-fast-$(VERSION)$(EXE)
508 : anton 1.150 (cd $(bindir) && $(LN_S) gforth-fast-$(VERSION)$(EXE) gforth-fast$(EXE))
509 : anton 1.131 $(INSTALL_PROGRAM) gforthmi $(bindir)/gforthmi-$(VERSION)
510 : anton 1.206 $(INSTALL_PROGRAM) vmgen $(bindir)/vmgen-$(VERSION)
511 : anton 1.147 $(INSTALL_PROGRAM) gforth-ditc $(libdir)/gforth/$(VERSION)
512 : anton 1.150 (cd $(bindir) && $(LN_S) gforthmi-$(VERSION) gforthmi)
513 : anton 1.206 (cd $(bindir) && $(LN_S) vmgen-$(VERSION) vmgen)
514 : anton 1.100 -$(INSTALL_DATA) $(srcdir)/doc/gforth.1 $(man1dir)
515 : anton 1.131 -for i in $(srcdir)/doc/gforth.info*; do $(INSTALL_DATA) $$i $(infodir); done
516 :     for i in $(FORTH_SRC) $(COMPAT) prim; do \
517 :     $(INSTALL_DATA) $(srcdir)/$$i $(datadir)/gforth/$(VERSION)/$$i; \
518 : anton 1.9 done
519 : anton 1.110 $(INSTALL_DATA) $(kernel_fi) $(datadir)/gforth/$(VERSION)
520 : pazsan 1.137 @if test -d "$(emacssitelispdir)"; then \
521 : anton 1.66 $(INSTALL_DATA) $(srcdir)/gforth.el $(emacssitelispdir); \
522 : pazsan 1.55 else \
523 : anton 1.66 echo ">>>>>Please install $(srcdir)/gforth.el in your .../emacs/site-lisp directory"; \
524 : anton 1.52 fi
525 : anton 1.190 -$(RM) gforth.fi
526 : anton 1.187 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)" ./gforthmi gforth.fi $(FORTHSIZES) $(STARTUP)
527 : anton 1.186 $(INSTALL_DATA) gforth.fi $(libdir)/gforth/$(VERSION)
528 :     $(INSTALL_DATA) install.TAGS $(datadir)/gforth/$(VERSION)/TAGS
529 : anton 1.187 $(RM) gforth.fi install.TAGS
530 : pazsan 1.108 @echo ">>>>> Please make an entry for Gforth in your info dir file; e.g.:"; \
531 : anton 1.72 echo "* Gforth: (gforth). A fast interpreter for the Forth language."
532 : anton 1.40
533 : anton 1.66 install-strip: install
534 :    
535 : anton 1.78 installdirs: mkinstalldirs
536 : anton 1.141 for i in $(bindir) $(man1dir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(siteforthdir); do \
537 :     $(srcdir)/mkinstalldirs $$i; \
538 :     done
539 : anton 1.131 for i in $(CVSDIRS); do \
540 :     $(srcdir)/mkinstalldirs $(datadir)/gforth/$(VERSION)/`dirname $$i`; \
541 :     done
542 : anton 1.180 $(RM) -rf $(datadir)/gforth/$(VERSION)/engine
543 : anton 1.78
544 : anton 1.40 #deinstall all files specific to this version of gforth
545 :     #to uninstall version foo, type `make uninstall VERSION=foo'
546 : jwilke 1.106 uninstall: FORCE
547 : anton 1.206 -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)$(EXE) $(bindir)/gforth-fast-$(VERSION)$(EXE) $(bindir)/gforthmi-$(VERSION) (bindir)/vmgen-$(VERSION)
548 :     @echo -e "To remove Gforth completely, type\n$(RM) -rf $(bindir)/gforth$(EXE) $(bindir)/gforth-fast$(EXE) $(bindir)/gforthmi $(bindir)/vmgen $(man1dir)/gforth.1 $(infodir)/gforth.info* $(datadir)/gforth $(libdir)/gforth"
549 : anton 1.40
550 : anton 1.233 check: gforths gforth.fi
551 :     make checkone ENGINE="./gforth --no-dynamic" &>/dev/null
552 :     make checkone ENGINE="./gforth-itc" &>/dev/null
553 :     make checkone ENGINE="./gforth-ditc" &>/dev/null
554 :     make checkone ENGINE="./gforth-fast --no-dynamic" &>/dev/null
555 :     make checkone ENGINE="./gforth" &>/dev/null
556 :     make checkone ENGINE="./gforth-fast" &>/dev/null
557 :    
558 :     checkone test: gforth$(EXE) gforth.fi
559 : anton 1.230 $(FORTH) test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs test/string.fs test/float.fs -e bye | diff -c - $(srcdir)/test/coretest.out
560 : anton 1.100 $(FORTH) test/other.fs -e bye
561 : anton 1.220 $(FORTHS) test/signals.fs -e bye
562 : anton 1.158 $(FORTH) code.fs test/checkans.fs -e bye | diff -c - $(srcdir)/test/checkans.out
563 : anton 1.213 $(FORTH) prims2x.fs -e \
564 : anton 1.225 "c-flag on s\" prim.i\" out-filename 2! s\" $(srcdir)/prim.b\" ' output-c ' output-c-combined process-file bye"| \
565 : jwilke 1.153 diff -c - $(srcdir)/engine/prim.i
566 : anton 1.21
567 : anton 1.143 bench: gforth-fast$(EXE) gforth.fi
568 : anton 1.40 @echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
569 : anton 1.143 time $(FORTH_FAST) siev.fs -e "main bye"
570 :     time $(FORTH_FAST) bubble.fs -e "main bye"
571 : anton 1.213 time $(FORTH_FAST) matrix.fs -e "main bye"
572 : anton 1.143 time $(FORTH_FAST) fib.fs -e "main bye"
573 : anton 1.40
574 : jwilke 1.106 # ------------- Make forth images
575 : anton 1.87
576 : anton 1.150 # How to make new images:
577 : jwilke 1.106 # 1. Produce an image called kernlXYZ.fi-
578 :     # the original kernel.fi is not touched because it's needed for creation
579 :     # 2. copy old kernlXYZ.fi to kernlXYZ.fi~
580 :     # that's a backup copy in case the new kernels don't work
581 :     # 3. copy new kernels to kernlXYZ.fi
582 :     # these are the ones we want to use now
583 : pazsan 1.1
584 : anton 1.227 kernl16l.fi-: $(KERN_DEPS) mach16l.fs
585 : jwilke 1.205 $(FORTHB) -e 's" mach16l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16l.fi- $(bindir)/gforth-$(VERSION) bye"
586 : anton 1.87
587 : anton 1.227 kernl16b.fi-: $(KERN_DEPS) mach16b.fs
588 : jwilke 1.205 $(FORTHB) -e 's" mach16b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16b.fi- $(bindir)/gforth-$(VERSION) bye"
589 : anton 1.87
590 : anton 1.227 kernl32l.fi-: $(KERN_DEPS) mach32l.fs
591 : jwilke 1.205 $(FORTHB) -e 's" mach32l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32l.fi- $(bindir)/gforth-$(VERSION) bye"
592 : anton 1.87
593 : anton 1.227 kernl32b.fi-: $(KERN_DEPS) mach32b.fs
594 : jwilke 1.205 $(FORTHB) -e 's" mach32b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32b.fi- $(bindir)/gforth-$(VERSION) bye"
595 : anton 1.100
596 : anton 1.227 kernl64l.fi-: $(KERN_DEPS) mach64l.fs
597 : jwilke 1.205 $(FORTHB) -e 's" mach64l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64l.fi- $(bindir)/gforth-$(VERSION) bye"
598 : anton 1.100
599 : anton 1.227 kernl64b.fi-: $(KERN_DEPS) mach64b.fs
600 : jwilke 1.205 $(FORTHB) -e 's" mach64b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64b.fi- $(bindir)/gforth-$(VERSION) bye"
601 : anton 1.100
602 : pazsan 1.166 kernl-%.fi: arch/%/mach.fs $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
603 : jwilke 1.205 $(FORTHB) -e 's" $<"' $(srcdir)/kernel/main.fs -e "save-cross $@- $(bindir)/gforth-$(VERSION) bye"
604 : anton 1.100 if [ -f `echo $< | sed s/fs/sh/` ]; \
605 :     then sh `echo $< | sed s/fs/sh/` $@; \
606 :     else $(CP) $@- $@; \
607 :     fi
608 : pazsan 1.30
609 : anton 1.180 #SunOS make does not like that
610 :     #arch/%/mach.fs: arch/%/prim.fs arch/%/asm.fs
611 : pazsan 1.122
612 : anton 1.87 kernl16b.fi: $(KERNLS)
613 : anton 1.97 -$(CP) kernl16b.fi kernl16b.fi~
614 :     -$(CP) kernl16b.fi- kernl16b.fi
615 : anton 1.87
616 :     kernl16l.fi: $(KERNLS)
617 : anton 1.97 -$(CP) kernl16l.fi kernl16l.fi~
618 :     -$(CP) kernl16l.fi- kernl16l.fi
619 : anton 1.87
620 : anton 1.96 kernl32b.fi: $(KERNLS)
621 : anton 1.97 -$(CP) kernl32b.fi kernl32b.fi~
622 :     -$(CP) kernl32b.fi- kernl32b.fi
623 : anton 1.87
624 :     kernl32l.fi: $(KERNLS)
625 :     -$(CP) kernl32l.fi kernl32l.fi~
626 :     -$(CP) kernl32l.fi- kernl32l.fi
627 :    
628 :     kernl64b.fi: $(KERNLS)
629 :     -$(CP) kernl64b.fi kernl64b.fi~
630 :     -$(CP) kernl64b.fi- kernl64b.fi
631 :    
632 :     kernl64l.fi: $(KERNLS)
633 :     -$(CP) kernl64l.fi kernl64l.fi~
634 :     -$(CP) kernl64l.fi- kernl64l.fi
635 : anton 1.89
636 : anton 1.100 #kernl%.fi: kernl%.fi- $(KERNLS)
637 :     # -$(CP) $@ $@~
638 :     # -$(CP) $< $@
639 : anton 1.87
640 : anton 1.215 gforth.fi: $(kernel_fi) gforthmi gforth$(EXE) gforth-ditc$(EXE) $(GFORTH_FI_SRC) comp-i.fs
641 : anton 1.171 GFORTHD="./gforth-ditc -p .$(PATHSEP)$(srcdir)" GFORTH="./gforth-ditc --die-on-signal -p .$(PATHSEP)$(srcdir) -i $(kernel_fi) $(STARTUP)" ./gforthmi gforth.fi $(FORTHSIZES) $(FORTHKFLAGS) $(STARTUP)
642 : anton 1.9
643 : jwilke 1.106 # ------------- Make c-engine
644 : pazsan 1.1
645 : anton 1.206 prim.b: prim peeprules.vmg
646 : anton 1.100 m4 -s $(srcdir)/prim >$@
647 :    
648 :     engine/prim.i: prim.b prims2x.fs
649 : anton 1.234 $(FORTHP) prims2x.fs -e "c-flag on s\" prim.i\" save-mem out-filename 2! s\" prim.b\" ' output-c ' output-c-combined process-file bye" >$@-
650 : pazsan 1.93 $(CP) $@- $@
651 :     $(RM) $@-
652 : pazsan 1.1
653 : anton 1.100 engine/prim_lab.i: prim.b prims2x.fs
654 : anton 1.206 $(FORTHP) prims2x.fs -e "c-flag on s\" prim.b\" ' output-label dup process-file bye" >$@-
655 : anton 1.212 $(CP) $@- $@
656 :     $(RM) $@-
657 :    
658 : anton 1.216 engine/prim_names.i: prim.b prims2x.fs
659 :     $(FORTHP) prims2x.fs -e "c-flag on s\" prim.b\" ' output-forthname dup process-file bye" >$@-
660 :     $(CP) $@- $@
661 :     $(RM) $@-
662 :    
663 : anton 1.212 engine/prim_superend.i: prim.b prims2x.fs
664 :     $(FORTHP) prims2x.fs -e "c-flag on s\" prim.b\" ' output-superend dup process-file bye" >$@-
665 : pazsan 1.93 $(CP) $@- $@
666 :     $(RM) $@-
667 : pazsan 1.1
668 : anton 1.199 engine/peephole.i: prim.b prims2x.fs
669 : anton 1.206 $(FORTHP) prims2x.fs -e "c-flag on s\" prim.b\" ' noop ' output-peephole process-file bye" >$@-
670 : anton 1.199 $(CP) $@- $@
671 :     $(RM) $@-
672 :    
673 : anton 1.200 engine/profile.i: prim.b prims2x.fs
674 : anton 1.216 $(FORTHP) prims2x.fs -e "c-flag on s\" prim.b\" ' output-profile ' output-profile-combined process-file bye" >$@-
675 : anton 1.200 $(CP) $@- $@
676 :     $(RM) $@-
677 :    
678 : anton 1.229 engine/costs.i: prim.b prims2x.fs
679 :     $(FORTHP) prims2x.fs -e "c-flag on s\" prim.b\" ' output-costs dup process-file bye" >$@-
680 : anton 1.228 $(CP) $@- $@
681 :     $(RM) $@-
682 :    
683 : anton 1.100 kernel/aliases.fs: prim.b prims2x.fs kernel/aliases0.fs
684 :     $(CP) kernel/aliases0.fs $@-
685 : anton 1.206 $(FORTHP) prims2x.fs -e "forth-flag on s\" prim.b\" ' output-alias dup process-file bye" >>$@-
686 : pazsan 1.93 $(CP) $@- $@
687 :     $(RM) $@-
688 : pazsan 1.1
689 : anton 1.100 kernel/prim.fs: prim.b prims2x.fs kernel/prim0.fs
690 :     $(CP) kernel/prim0.fs kernel/prim.fs-
691 : anton 1.206 $(FORTHP) prims2x.fs -e "forth-flag on s\" prim.b\" ' output-forth ' output-forth-combined process-file bye" >>$@-
692 : pazsan 1.203 $(CP) $@- $@
693 :     $(RM) $@-
694 :    
695 : anton 1.232 engine/prim_num.i: prim.b prims2x.fs
696 :     $(FORTHP) prims2x.fs -e "c-flag on s\" prim.b\" ' output-c-prim-num ' noop process-file bye" >$@
697 : anton 1.27
698 : pazsan 1.130 gforth$(EXE): engines
699 : pazsan 1.123 -$(CP) gforth$(EXE) gforth~
700 : anton 1.110 $(CP) engine/$@ $@
701 : jwilke 1.106 @GFORTH_EXE@
702 :    
703 : anton 1.143 gforth-fast$(EXE): engines
704 :     $(CP) engine/$@ $@
705 :     @GFORTHFAST_EXE@
706 :    
707 : anton 1.231 gforth-native$(EXE): engines
708 :     $(CP) engine/$@ $@
709 :     #@GFORTHX_EXE@
710 :    
711 : anton 1.219 gforth-itc$(EXE): engines
712 :     $(CP) engine/$@ $@
713 :     @GFORTHITC_EXE@
714 :    
715 : pazsan 1.130 gforth-ditc$(EXE): engines
716 : anton 1.110 $(CP) engine/$@ $@
717 : jwilke 1.106 @GFORTHDITC_EXE@
718 : pazsan 1.130
719 : anton 1.200 gforth-prof$(EXE): engines
720 :     $(CP) engine/$@ $@
721 : anton 1.218
722 : anton 1.236 gforths: gforth$(EXE) gforth-fast$(EXE) gforth-itc$(EXE) gforth-ditc$(EXE) #gforth-prof$(EXE) gforth-native$(EXE)
723 : anton 1.200
724 : anton 1.217 engines: FORCE $(FORTH_GEN_ENGINE) engine/Makefile
725 : anton 1.236 cd engine && $(MAKE) gforth$(EXE) gforth-fast$(EXE) gforth-itc$(EXE) gforth-ditc$(EXE) #gforth-prof$(EXE) gforth-native$(EXE)
726 : pazsan 1.107
727 :     # ------------- additional C primitives
728 :    
729 :     %.c: %.pri prim2cl.fs
730 :     $(FORTHK) prim2cl.fs -e "file $< altogether bye" >$@
731 :    
732 :     %.so: %.c
733 :     $(GCC) -shared $(CFLAGS) $< -o $@
734 : jwilke 1.106
735 :     # ------------- Make Documentation
736 :    
737 :     #TAGS is a GNU standard target
738 :     TAGS: gforth.TAGS
739 :     $(CP) gforth.TAGS $@
740 :    
741 : pazsan 1.211 tags: gforth.tags
742 :     $(CP) gforth.tags $@
743 :    
744 : anton 1.131 install.TAGS: gforth.TAGS
745 :     sed 's:^\$(srcdir)/:$(datadir)/gforth/$(VERSION)/:' gforth.TAGS >install.TAGS
746 :    
747 : anton 1.190 gforth.TAGS: @kernel_fi@ gforth$(EXE) $(GFORTH_FI_SRC) prim.TAGS kernel.TAGS
748 : pazsan 1.181 $(FORTHK) etags.fs except.fs startup.fs -e bye
749 : jwilke 1.106 cat TAGS prim.TAGS kernel.TAGS >gforth.TAGS
750 :     rm TAGS
751 :    
752 : pazsan 1.211 gforth.tags: @kernel_fi@ gforth$(EXE) $(GFORTH_FI_SRC) prim.tags kernel.tags
753 :     $(FORTHK) tags.fs except.fs startup.fs -e bye
754 :     cat tags prim.tags kernel.tags >gforth.tags
755 :     rm tags
756 :    
757 : anton 1.100 prim.TAGS: prim.b prims2x.fs
758 : anton 1.197 #echo '2c\' >prim.TAGS.sed
759 :     #echo $(srcdir)/prim >>prim.TAGS.sed
760 : anton 1.206 #$(FORTHP) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-tag dup process-file bye" | sed -f prim.TAGS.sed >$@-
761 :     $(FORTHP) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-tag dup process-file bye" >$@-
762 : pazsan 1.93 $(CP) $@- $@
763 :     $(RM) $@-
764 : anton 1.190
765 : pazsan 1.211 prim.tags: prim.b prims2x.fs
766 :     #echo '2c\' >prim.TAGS.sed
767 :     #echo $(srcdir)/prim >>prim.TAGS.sed
768 :     #$(FORTHP) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-tag dup process-file bye" | sed -f prim.TAGS.sed >$@-
769 :     $(FORTHP) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-vi-tag dup process-file bye" >$@-
770 :     $(CP) $@- $@
771 :     $(RM) $@-
772 :    
773 : anton 1.190 kernel.TAGS:
774 : pazsan 1.211 rm kernl16l.fi-; $(MAKE) @kernel_fi@
775 :    
776 :     kernel.tags:
777 : anton 1.190 rm kernl16l.fi-; $(MAKE) @kernel_fi@
778 : pazsan 1.1
779 : crook 1.151 doc/doc.fd: doc/makedoc.fs $(GFORTH_FI_SRC) code.fs objects.fs oof.fs moofglos.fs
780 : pazsan 1.181 $(FORTHK) -e "s\" doc/doc.fd\"" doc/makedoc.fs except.fs startup.fs code.fs objects.fs oof.fs moofglos.fs -e bye
781 : anton 1.20
782 : anton 1.100 doc/crossdoc.fd: $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
783 :     $(FORTHK) -e 's" mach32l.fs"' kernel/main.fs -e bye
784 : anton 1.35
785 : anton 1.100 doc/gforth.texi: doc/gforth.ds prim.b ds2texi.fs prims2x.fs \
786 :     doc/doc.fd doc/crossdoc.fd
787 : anton 1.206 $(FORTHP) 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" >$@-
788 : pazsan 1.93 $(CP) $@- $@
789 :     $(RM) $@-
790 : anton 1.35
791 : anton 1.100 checkdoc: doc/gforth.ds prim.b ds2texi.fs prims2x.fs doc/doc.fd doc/crossdoc.fd answords.fs doc/gforth.texi
792 : 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
793 : anton 1.100 -grep unknown doc/gforth.texi
794 : anton 1.66
795 : anton 1.223 dvi: doc/gforth.dvi doc/vmgen.dvi
796 : pazsan 1.1
797 : anton 1.111 doc/gforth.dvi doc/gforth.fns: $(GFORTH_TEXI)
798 : anton 1.100 cd doc; $(TEXI2DVI) gforth.texi
799 : anton 1.5
800 : anton 1.223 doc/vmgen.dvi: $(VMGEN_TEXI)
801 :     cd doc; $(TEXI2DVI) vmgen.texi
802 :    
803 : anton 1.100 doc/gforth.ps: doc/gforth.dvi
804 :     $(DVI2PS) doc/gforth.dvi -o $@
805 : anton 1.40
806 : anton 1.226 doc/vmgen.ps: doc/vmgen.dvi
807 :     $(DVI2PS) doc/vmgen.dvi -o $@
808 :    
809 : anton 1.223 info: doc/gforth.info doc/vmgen.info
810 :    
811 :     doc/gforth.info: $(GFORTH_TEXI)
812 :     cd doc; $(MAKEINFO) gforth.texi
813 :    
814 :     doc/vmgen.info: $(VMGEN_TEXI)
815 :     cd doc; $(MAKEINFO) vmgen.texi
816 : anton 1.66
817 : anton 1.15
818 : anton 1.224 ### need makeinfo 4.2 to generate html with these rules
819 :     doc/gforth: $(GFORTH_TEXI)
820 :     cd doc; $(MAKEINFO) --html gforth.texi
821 :    
822 :     doc/vmgen: $(VMGEN_TEXI)
823 :     cd doc; $(MAKEINFO) --html vmgen.texi
824 : anton 1.114
825 :     doc/gforth.txt: $(GFORTH_TEXI)
826 :     -cd doc; $(MAKEINFO) --no-headers --no-split gforth.texi >gforth.txt
827 : anton 1.224
828 :     doc/vmgen.txt: $(VMGEN_TEXI)
829 :     -cd doc; $(MAKEINFO) --no-headers --no-split vmgen.texi >vmgen.txt
830 : pazsan 1.63
831 : anton 1.226 doc: info doc/gforth doc/vmgen doc/gforth.ps doc/vmgen.ps doc/gforth.txt doc/vmgen.txt TAGS
832 : pazsan 1.1
833 : anton 1.9 # For an explanation of the following Makefile rules, see node
834 :     # `Automatic Remaking' in GNU Autoconf documentation.
835 : anton 1.159
836 :     #Note: no target "$(srcdir)/configure", because that does not trigger
837 :     #unless $(srcdir)!="."
838 : anton 1.236 configure: configure.in aclocal.m4
839 :     cd $(srcdir) && autoconf
840 : anton 1.111
841 : anton 1.236 aclocal.m4: configure.in
842 : anton 1.111 aclocal
843 : pazsan 1.69
844 : anton 1.51 # autoheader might not change config.h.in, so touch a stamp file.
845 : anton 1.236 engine/config.h.in: stamp-h.in
846 :     stamp-h.in: configure.in aclocal.m4
847 :     cd $(srcdir) && autoheader
848 :     echo timestamp > $(srcdir)/stamp-h.in
849 :    
850 :     engine/config.h: stamp-h
851 :     stamp-h: engine/config.h.in config.status
852 :     ./config.status
853 : anton 1.112
854 : anton 1.236 Makedist engine/Makefile gforthmi vmgen machpc.fs doc/version.texi: Makefile.in Makedist.in engine/Makefile.in gforthmi.in vmgen.in machpc.fs.in doc/version.texi.in config.status configure.in
855 :     ./config.status
856 : anton 1.112
857 : anton 1.236 config.status: configure
858 :     ./config.status --recheck
859 : pazsan 1.30
860 : anton 1.51
861 :     #create files for DOS, because DOS cannot do it itself
862 : jwilke 1.106 makefile.dos: mkdosmf.sed Makefile.in engine/Makefile.in
863 : pazsan 1.30 sed -f mkdosmf.sed <Makefile.in >makefile.dos
864 : anton 1.100 sed -f mkdosmf.sed <engine/Makefile.in >engine/makefile.dos
865 : pazsan 1.69
866 : jwilke 1.106 makefile.os2: mkos2mf.sed Makefile.in engine/Makefile.in
867 : pazsan 1.69 sed -f mkos2mf.sed <Makefile.in >makefile.os2
868 : anton 1.100 sed -f mkos2mf.sed <engine/Makefile.in >engine/makefile.os2
869 : pazsan 1.69 echo '%.o: %.c' >>makefile.os2
870 :     echo ' $$(GCC) $$(CFLAGS) -c $$<' >>makefile.os2
871 : anton 1.100 echo '%.o: %.c' >>engine/makefile.os2
872 :     echo ' $$(GCC) $$(CFLAGS) -c $$<' >>engine/makefile.os2

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help