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

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help