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

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help