[gforth] / gforth / Makefile.in  

gforth: gforth/Makefile.in


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

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help