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

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help