[gforth] / gforth / Makefile.in  

gforth: gforth/Makefile.in


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

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help