[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 : anton 1.77 #gforth version
27 :     VERSION_MAJOR=0
28 : pazsan 1.88 VERSION_MINOR=3
29 :     VERSION_RELEASE=0
30 : anton 1.77 VERSION =$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_RELEASE)
31 :     DOSVERSION=$(VERSION_MAJOR)$(VERSION_MINOR)$(VERSION_RELEASE)
32 : anton 1.9 SHELL = /bin/sh
33 : pazsan 1.4 RM = rm
34 : pazsan 1.74 RMTREE = rm -rf
35 : pazsan 1.4 CP = cp
36 : pazsan 1.74 TAR = tar cf -
37 : anton 1.9 INSTALL = @INSTALL@
38 :     INSTALL_PROGRAM = @INSTALL_PROGRAM@
39 :     INSTALL_DATA = @INSTALL_DATA@
40 :     LN_S = @LN_S@
41 : pazsan 1.48 GCC = @CC@
42 : anton 1.23 CC = $(GCC)
43 : anton 1.68 PATHSEP = @PATHSEP@
44 : anton 1.67 FORTHPATH = $(libdir)/gforth/site-forth$(PATHSEP)$(datadir)/gforth/site-forth$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)$(PATHSEP).
45 : anton 1.72 FORTHSIZES = @FORTHSIZES@
46 : anton 1.67 FORTH = ./gforth -p $(FORTHPATH)$(PATHSEP)$(srcdir)
47 : anton 1.87 FORTHKFLAGS= -p .$(PATHSEP)$(srcdir) -i ./kernel.fi
48 :     FORTHK = ./gforth $(FORTHKFLAGS)
49 : anton 1.66 FORTHP = ./gforth -i ./kernel.fi
50 : anton 1.22 STRIP = strip
51 : anton 1.32 TEXI2DVI = texi2dvi
52 : anton 1.38 DVI2PS = dvips -D300
53 : anton 1.15 #you can get texi2html from http://asis01.cern.ch/infohtml/texi2html.html
54 :     TEXI2HTML = texi2html
55 : anton 1.11 MAKEINFO = makeinfo
56 : anton 1.9 XCFLAGS = @CFLAGS@
57 :     XDEFINES = @DEFS@
58 : anton 1.12 SWITCHES = $(XCFLAGS) $(XDEFINES) #-DNDEBUG #turn off assertions
59 : pazsan 1.48 ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves
60 : pazsan 1.30 DEBUGFLAG = @DEBUGFLAG@
61 : anton 1.66 CFLAGS = $(DEBUGFLAG) -I. -I$(srcdir) -O4 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(FORTHPATH)\"
62 : pazsan 1.1
63 :     #John Wavrik should use -Xlinker -N to get a writable text (executable)
64 : pazsan 1.30 XLDFLAGS = @LDFLAGS@
65 :     GCCLDFLAGS = @GCCLDFLAGS@
66 :     LDFLAGS = $(DEBUGFLAG) $(XLDFLAGS) $(GCCLDFLAGS)
67 : anton 1.9 LDLIBS = @LIBS@
68 :    
69 : anton 1.52 VPATH = @srcdir@
70 : anton 1.9 prefix = @prefix@
71 :     exec_prefix = @exec_prefix@
72 :     srcdir = @srcdir@
73 :     bindir = $(exec_prefix)/bin
74 :     #read-only architecture-independent files
75 :     datadir = $(prefix)/share
76 :     #read-only architecture-dependent non-ascii files
77 :     libdir = $(prefix)/lib
78 :     infodir = $(prefix)/info
79 : anton 1.52 mandir = $(prefix)/man
80 :     man1dir= $(mandir)/man1
81 :     man1ext= .1
82 :     #older emacses have their site-lisp in $(libdir)/emacs/
83 :     emacssitelispdir=$(datadir)/emacs/site-lisp
84 : pazsan 1.1
85 : pazsan 1.65 INCLUDES = forth.h threading.h io.h
86 : pazsan 1.1
87 : anton 1.52 KERN_SRC = \
88 : pazsan 1.82 aliases0.fs \
89 : anton 1.52 aliases.fs \
90 : pazsan 1.85 args.fs \
91 : pazsan 1.82 conditionals.fs \
92 : pazsan 1.86 cond-old.fs \
93 : anton 1.52 cross.fs \
94 :     errore.fs \
95 : pazsan 1.82 files.fs \
96 : pazsan 1.65 kernel.fs \
97 : anton 1.52 main.fs \
98 : pazsan 1.84 primitives0.fs \
99 : anton 1.52 search-order.fs \
100 : pazsan 1.63 special.fs \
101 : anton 1.52 tools.fs \
102 :     toolsext.fs \
103 : pazsan 1.65 vars.fs
104 : anton 1.52
105 :     GFORTH_FI_SRC = \
106 :     assert.fs \
107 : pazsan 1.60 blockedit.fb \
108 : anton 1.52 blocks.fs \
109 :     bufio.fs \
110 :     debug.fs \
111 :     debugging.fs \
112 :     dumpimage.fs \
113 :     environ.fs \
114 : pazsan 1.82 errors.fs \
115 :     extend.fs \
116 : anton 1.52 float.fs \
117 :     glocals.fs \
118 :     hash.fs \
119 :     history.fs \
120 : anton 1.64 intcomp.fs \
121 : anton 1.52 look.fs \
122 :     search-order.fs \
123 :     see.fs \
124 : pazsan 1.85 see-ext.fs \
125 : anton 1.52 source.fs \
126 :     startup.fs \
127 :     struct.fs \
128 :     stuff.fs \
129 : pazsan 1.60 tasker.fs \
130 : anton 1.52 termsize.fs \
131 :     vt100.fs \
132 :     vt100key.fs \
133 :     wordinfo.fs
134 :    
135 :     FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_SRC) \
136 : anton 1.75 ans-report.fs ansi.fs answords.fs \
137 : anton 1.52 checkans.fs \
138 : anton 1.89 code.fs colorize.fs comp-image.fs \
139 : anton 1.52 doskey.fs ds2texi.fs \
140 :     etags.fs filedump.fs \
141 :     glosgen.fs gray.fs \
142 : anton 1.89 makedoc.fs \
143 : anton 1.49 mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
144 : anton 1.52 more.fs other.fs prims2x.fs random.fs \
145 :     sieve.fs \
146 :     site-init.fs \
147 :     tt.fs sokoban.fs \
148 :     wordsets.fs \
149 : anton 1.91 tester.fs coretest.fs postponetest.fs dbltest.fs other-tests.fs \
150 : pazsan 1.65 bubble.fs siev.fs matrix.fs fib.fs \
151 : anton 1.75 oof.fs oofsampl.fs objects.fs
152 : pazsan 1.1
153 : anton 1.91 SOURCES = CVS compat Makefile.in gforth-makeimage \
154 :     configure.in configure config.sub config.guess \
155 : pazsan 1.65 acconfig.h config.h.in stamp-h.in \
156 : anton 1.40 install-sh INSTALL README ToDo BUGS model COPYING Benchres \
157 : pazsan 1.28 gforth.ds texinfo.tex gforth.1 gforth.el \
158 : anton 1.62 primitives engine.c main.c io.c memcasecmp.c \
159 : pazsan 1.17 m68k.h mips.h 386.h hppa.h cache.c sparc.h power.h alpha.h 32bit.h \
160 : anton 1.14 getopt.c getopt1.c getopt.h select.c \
161 : pazsan 1.69 ecvt.c memcmp.c strtol.c strtoul.c ansidecl.h memmove.c pow10.c atanh.c \
162 : pazsan 1.56 strerror.c strsignal.c dblsub.c \
163 : pazsan 1.65 INSTALL.DOS makefile.dos mkdosmf.sed configure.bat dosconf.h \
164 : pazsan 1.93 gforth-makeimage.bat startup.dos history.dos mkinstalldirs \
165 : pazsan 1.95 configure.cmd mkos2mf.sed os2conf.h makefile.os2 gforth-makeimage.cmd \
166 : pazsan 1.6 glosgen.glo glossaries.doc \
167 : pazsan 1.1 $(INCLUDES) $(FORTH_SRC)
168 :    
169 : anton 1.5 RCS_FILES = ToDo model high-level
170 : pazsan 1.1
171 : anton 1.92 GEN = gforth gforth-ditc version.fs version-stamp
172 : pazsan 1.1
173 : anton 1.87 OBJECTS0 = io.o memcasecmp.o @LIBOBJS@ @getopt_long@
174 :     OBJECTS = engine.o main.o
175 :     OBJECTS_DITC = engine-ditc.o main-ditc.o
176 : pazsan 1.1
177 :     # things that need a working forth system to be generated
178 : pazsan 1.83 FORTH_GEN0 = primitives.b primitives.i prim_labels.i aliases.fs primitives.fs
179 : pazsan 1.65 FORTH_GEN = $(FORTH_GEN0) @KERNEL@ gforth.fi
180 : pazsan 1.1 # this is used for antidependences,
181 : pazsan 1.65 FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@
182 : anton 1.5
183 : anton 1.38 #distributed documentation
184 : anton 1.94 DOCDIST = gforth.info gforth.info-* gforth.ps
185 : anton 1.5
186 : anton 1.72 #stuff in a binonly distribution
187 : anton 1.87 BINONLYDIST = config.status Makefile gforth gforth-ditc \
188 :     $(OBJECTS0) $(OBJECTS) $(OBJECTS_DITC)\
189 : anton 1.92 machine.h config.h kernel.fi \
190 :     stamp-h version.h version.fs version-stamp \
191 : anton 1.72 INSTALL.BINDIST
192 :    
193 : pazsan 1.48 KERNLS = kernl16b.fi- kernl16l.fi- \
194 :     kernl32b.fi- kernl32l.fi- \
195 :     kernl64b.fi- kernl64l.fi-
196 : pazsan 1.30
197 :     GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) gforth.texi gforth.dvi gforth.ps Makefile configure
198 : pazsan 1.1
199 : anton 1.9 #standards.info recommends this:
200 :     .SUFFIXES:
201 :     .SUFFIXES: .c .o
202 :    
203 : pazsan 1.48 all: version.fs more
204 : pazsan 1.1
205 : anton 1.78 #this rule avoids remaking everything after minor changes in Makefile.in
206 :     version-stamp: Makefile.in
207 : anton 1.94 if test -r $@ && test x'$(VERSION)' = x`cat $@` ; then true ; else echo $(VERSION) > $@ ; fi
208 : anton 1.78
209 :     version.h: version-stamp
210 : anton 1.71 echo "static char gforth_version[]=\"$(VERSION)\" ;" >$@
211 : pazsan 1.48
212 : anton 1.78 version.fs: version-stamp
213 : pazsan 1.48 $(MAKE) gforth
214 :     echo ": version-string s\" $(VERSION)\" ;" >$@
215 : pazsan 1.2
216 : pazsan 1.83 more: $(OBJECTS) $(FORTH_GEN) gforth
217 : pazsan 1.2
218 : pazsan 1.1 #from the gcc Makefile:
219 :     #"Deletion of files made during compilation.
220 :     # There are four levels of this:
221 :     # `mostlyclean', `clean', `distclean' and `realclean'.
222 :     # `mostlyclean' is useful while working on a particular type of machine.
223 :     # It deletes most, but not all, of the files made by compilation.
224 :     # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
225 :     # `clean' deletes everything made by running `make all'.
226 :     # `distclean' also deletes the files made by config.
227 :     # `realclean' also deletes everything that could be regenerated automatically."
228 :    
229 : anton 1.45 mostlyclean:
230 : anton 1.66 -$(RM) -rf *.s gforth.fi *.fi~ *.fi- version.fs *TAGS \
231 :     crossdoc.fd doc.fd gforth.texi gforth.fns gforth.aux gforth.cp gforth.cps \
232 : anton 1.45 gforth.dvi gforth.fn gforth.ky gforth.log gforth.pg \
233 : anton 1.72 gforth.toc gforth.tp gforth.vr html gforth-$(VERSION).tar.gz \
234 : anton 1.73 version.h
235 : anton 1.45
236 :     clean: mostlyclean
237 :     -$(RM) -rf $(GEN) *.o
238 : pazsan 1.1
239 :     distclean: clean
240 : anton 1.73 -$(RM) machine.h kernel.fi config.cache config.log \
241 :     config.status config.h Makefile stamp-h
242 : pazsan 1.1
243 : anton 1.53 #realclean is useless, but dangerous, so it's commented out
244 :     #realclean: distclean
245 :     # -$(RM) $(GEN_PRECIOUS)
246 : pazsan 1.1
247 : anton 1.45 #mostlyclean, but also remove some of the stuff that is distributed
248 :     virtualclean: mostlyclean
249 :     -$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \
250 : anton 1.59 gforth-$(VERSION).tar.gz config.cache *~ */*~
251 : anton 1.45
252 : anton 1.66 #use dist targets only when srcdir=.
253 : pazsan 1.69 dist: $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST)
254 : pazsan 1.74 -$(RMTREE) gforth-$(VERSION)
255 : anton 1.21 mkdir gforth-$(VERSION)
256 : pazsan 1.65 $(CP) -rp $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) gforth-$(VERSION)
257 : pazsan 1.74 $(TAR) gforth-$(VERSION)|gzip -9 >gforth-$(VERSION).tar.gz
258 :     -$(RMTREE) gforth-$(VERSION)
259 :    
260 :     #use dist targets only when srcdir=.
261 :     dosdist: $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST)
262 :     -$(RMTREE) gforth.$(DOSVERSION)
263 :     mkdir gforth.$(DOSVERSION)
264 : pazsan 1.85 $(CP) -rp $(SOURCES) $(FORTH_GEN) $(DOCDIST) gforth.$(DOSVERSION)
265 : pazsan 1.74 zip -r9 gforth.zip gforth.$(DOSVERSION)/*
266 :     -$(RMTREE) gforth.$(DOSVERSION)
267 : pazsan 1.1
268 : pazsan 1.69 #A source distribution contains only the things needed to install gforth,
269 :     #without the documents.
270 :     srcdist: $(SOURCES) $(FORTH_GEN0) @KERNEL@
271 : pazsan 1.74 -$(RMTREE) gforth-$(VERSION)
272 : pazsan 1.69 mkdir gforth-$(VERSION)
273 :     $(CP) -rp $(SOURCES) $(FORTH_GEN0) @KERNEL@ gforth-$(VERSION)
274 : pazsan 1.74 $(TAR) gforth-$(VERSION)|gzip -9 >gforth-src-$(VERSION).tar.gz
275 :     -$(RMTREE) gforth-$(VERSION)
276 : pazsan 1.69
277 :     #A document distribution contains only the documents, which can be created
278 :     #with MAKE.
279 :     docdist: $(DOCDIST)
280 : pazsan 1.74 -$(RMTREE) gforth-$(VERSION)
281 : pazsan 1.69 mkdir gforth-$(VERSION)
282 :     $(CP) -rp $(DOCDIST) gforth-$(VERSION)
283 : pazsan 1.74 $(TAR) gforth-$(VERSION)|gzip -9 >gforth-doc-$(VERSION).tar.gz
284 :     -$(RMTREE) gforth-$(VERSION)
285 : pazsan 1.69
286 : anton 1.22 #a binary distribution contains the complete source distribution,
287 :     # the objects, the executable and the links. the objects are there for making
288 :     # make happy.
289 : anton 1.72 bindist: $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST)
290 : pazsan 1.74 -$(RMTREE) gforth-$(VERSION)
291 : anton 1.22 mkdir gforth-$(VERSION)
292 : anton 1.72 $(CP) -rp -d $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST) gforth-$(VERSION)
293 : anton 1.22 strip gforth-$(VERSION)/gforth
294 : pazsan 1.74 $(TAR) gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-@host@.tar.gz
295 : anton 1.22
296 :     #makes a package with only the stuff not present in the source
297 :     #package. For installation the source package is still needed!
298 :     #This is useful if you want to distribute many binary versions in
299 :     #little space (e.g., on floppy disk): Put the source package and
300 :     #all the binonly packages you are interested in on the disk. The user
301 :     #then just has to unpack the source and his favourite binonly into the
302 :     #same directory and has a full binary distribution.
303 : anton 1.72 binonlydist: $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST)
304 : pazsan 1.74 -$(RMTREE) gforth-$(VERSION)
305 : anton 1.22 mkdir gforth-$(VERSION)
306 : anton 1.72 $(CP) -p -d $(BINONLYDIST) gforth-$(VERSION)
307 : anton 1.22 strip gforth-$(VERSION)/gforth
308 : pazsan 1.74 $(TAR) gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-binonly-@host@.tar.gz
309 : anton 1.22
310 :    
311 : anton 1.15 #strip gforth, because the debugging stuff is hardly useful once
312 :     # gforth manages to execute more than a few primitives
313 :    
314 : anton 1.68 #install does not depend on gforth.info, because that would require
315 :     #supplying a lot of files that can be easily generated (only info is
316 :     #hard to generate)
317 : anton 1.78 install: gforth $(FORTH_SRC) kernel.fi gforth.fi gforth.1 primitives gforth.TAGS installdirs
318 : anton 1.42 touch $(datadir)/gforth/site-forth/site-init.fs
319 : anton 1.49 -$(RM) $(bindir)/gforth $(bindir)/gforth-$(VERSION)
320 : anton 1.15 $(INSTALL_PROGRAM) -s gforth $(bindir)
321 : anton 1.49 ln $(bindir)/gforth $(bindir)/gforth-$(VERSION)
322 : pazsan 1.83 -$(INSTALL_DATA) $(srcdir)/gforth.1 $(man1dir)
323 :     -for i in $(srcdir)/gforth.info*; do $(INSTALL_DATA) $$i $(infodir); done
324 : anton 1.50 for i in $(FORTH_SRC) primitives; do \
325 : anton 1.66 $(INSTALL_DATA) $(srcdir)/$$i $(datadir)/gforth/$(VERSION); \
326 : anton 1.9 done
327 : pazsan 1.65 $(INSTALL_DATA) kernel.fi $(libdir)/gforth/$(VERSION)
328 : anton 1.77 $(RM) gforth.fi; $(MAKE) gforth.fi #gforth.fi contains some path names
329 : pazsan 1.83 $(INSTALL_DATA) gforth.fi $(libdir)/gforth/$(VERSION)
330 : anton 1.94 sed 's:^$(srcdir)/:$(datadir)/gforth/$(VERSION)/:' gforth.TAGS >TAGS; $(INSTALL_DATA) TAGS $(datadir)/gforth/$(VERSION)
331 : anton 1.52 if test -d $(emacssitelispdir); then \
332 : anton 1.66 $(INSTALL_DATA) $(srcdir)/gforth.el $(emacssitelispdir); \
333 : pazsan 1.55 else \
334 : anton 1.66 echo ">>>>>Please install $(srcdir)/gforth.el in your .../emacs/site-lisp directory"; \
335 : anton 1.52 fi
336 : anton 1.68 echo ">>>>> Please make an entry for Gforth in your info dir file; e.g.:"; \
337 : anton 1.72 echo "* Gforth: (gforth). A fast interpreter for the Forth language."
338 : anton 1.40
339 : anton 1.66 install-strip: install
340 :    
341 : anton 1.78 installdirs: mkinstalldirs
342 :     $(srcdir)/mkinstalldirs $(bindir) $(man1dir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(datadir)/gforth/site-forth
343 :    
344 : anton 1.40 #deinstall all files specific to this version of gforth
345 :     #to uninstall version foo, type `make uninstall VERSION=foo'
346 :     uninstall:
347 :     -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)
348 : 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"
349 : anton 1.40
350 : anton 1.67 check test: gforth gforth.fi
351 : anton 1.61 $(FORTH) tester.fs coretest.fs postponetest.fs dbltest.fs -e bye
352 : anton 1.91 $(FORTH) other-tests.fs -e bye
353 : anton 1.38 $(FORTH) code.fs checkans.fs -e bye
354 : anton 1.21 @echo 'Expect no differences'
355 : pazsan 1.95 $(FORTH) -m 100000 prims2x.fs -e "s\" $(srcdir)/primitives.b\"' output-c process-file bye"| diff -c - $(srcdir)/primitives.i
356 : anton 1.21
357 : anton 1.46 bench: gforth gforth.fi
358 : anton 1.40 @echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
359 :     time $(FORTH) siev.fs -e "main bye"
360 :     time $(FORTH) bubble.fs -e "main bye"
361 : anton 1.41 time $(FORTH) -m 160000 matrix.fs -e "main bye"
362 : anton 1.40 time $(FORTH) fib.fs -e "main bye"
363 :    
364 : anton 1.9 dvi: gforth.dvi
365 : anton 1.5
366 : anton 1.87 gforth: $(OBJECTS) $(OBJECTS0)
367 : pazsan 1.4 -$(CP) gforth gforth~
368 : anton 1.87 $(GCC) $(LDFLAGS) $(OBJECTS) $(OBJECTS0) $(LDLIBS) -o $@
369 : pazsan 1.95 @GFORTH_EXE@
370 : anton 1.87
371 :     gforth-ditc: $(OBJECTS_DITC) $(OBJECTS0)
372 :     $(GCC) $(LDFLAGS) $(OBJECTS_DITC) $(OBJECTS0) $(LDLIBS) -o $@
373 : pazsan 1.95 @GFORTHDITC_EXE@
374 : pazsan 1.1
375 : anton 1.87 kernl16l.fi-: $(KERN_SRC) version.fs mach16l.fs $(FORTH_GEN0)
376 :     $(FORTHK) -e 's" mach16l.fs"' main.fs -e "save-cross kernl16l.fi- $(bindir)/gforth-$(VERSION) bye"
377 :    
378 :     kernl16b.fi-: $(KERN_SRC) version.fs mach16b.fs $(FORTH_GEN0)
379 :     $(FORTHK) -e 's" mach16b.fs"' main.fs -e "save-cross kernl16b.fi- $(bindir)/gforth-$(VERSION) bye"
380 :    
381 :     kernl32l.fi-: $(KERN_SRC) version.fs mach32l.fs $(FORTH_GEN0)
382 :     $(FORTHK) -e 's" mach32l.fs"' main.fs -e "save-cross kernl32l.fi- $(bindir)/gforth-$(VERSION) bye"
383 :    
384 :     kernl32b.fi-: $(KERN_SRC) version.fs mach32b.fs $(FORTH_GEN0)
385 :     $(FORTHK) -e 's" mach32b.fs"' main.fs -e "save-cross kernl32b.fi- $(bindir)/gforth-$(VERSION) bye"
386 :    
387 :     kernl64l.fi-: $(KERN_SRC) version.fs mach64l.fs $(FORTH_GEN0)
388 :     $(FORTHK) -e 's" mach64l.fs"' main.fs -e "save-cross kernl64l.fi- $(bindir)/gforth-$(VERSION) bye"
389 :    
390 :     kernl64b.fi-: $(KERN_SRC) version.fs mach64b.fs $(FORTH_GEN0)
391 :     $(FORTHK) -e 's" mach64b.fs"' main.fs -e "save-cross kernl64b.fi- $(bindir)/gforth-$(VERSION) bye"
392 :    
393 : anton 1.89 kernl%.fi-: mach%.fs $(KERN_SRC) version.fs $(FORTH_GEN0)
394 :     $(FORTHK) -e 's" $<"' main.fs -e "save-cross $@ $(bindir)/gforth-$(VERSION) bye"
395 : pazsan 1.30
396 : anton 1.87 kernl16b.fi: $(KERNLS)
397 : pazsan 1.95 -$(CP) $@ $@~
398 :     -$(CP) $@- $@
399 : anton 1.87
400 :     kernl16l.fi: $(KERNLS)
401 : pazsan 1.95 -$(CP) $@ $@~
402 :     -$(CP) $@- $@
403 : anton 1.87
404 : pazsan 1.95 kernl32b: $(KERNLS)
405 :     -$(CP) $@ $@~
406 :     -$(CP) $@- $@
407 : anton 1.87
408 :     kernl32l.fi: $(KERNLS)
409 :     -$(CP) kernl32l.fi kernl32l.fi~
410 :     -$(CP) kernl32l.fi- kernl32l.fi
411 :    
412 :     kernl64b.fi: $(KERNLS)
413 :     -$(CP) kernl64b.fi kernl64b.fi~
414 :     -$(CP) kernl64b.fi- kernl64b.fi
415 :    
416 :     kernl64l.fi: $(KERNLS)
417 :     -$(CP) kernl64l.fi kernl64l.fi~
418 :     -$(CP) kernl64l.fi- kernl64l.fi
419 : anton 1.89
420 :     kernl%.fi: kernl%.fi- $(KERNLS)
421 :     -$(CP) $@ $@~
422 :     -$(CP) $< $@
423 : anton 1.87
424 :     gforth.fi: @kernel_fi@ gforth-makeimage gforth gforth-ditc $(GFORTH_FI_SRC)
425 : anton 1.92 GFORTHD="./gforth-ditc -p .$(PATHSEP)$(srcdir)" $(srcdir)/gforth-makeimage gforth.fi $(FORTHSIZES) $(FORTHKFLAGS) startup.fs
426 : anton 1.50
427 : anton 1.67 #TAGS is a GNU standard target
428 :     TAGS: gforth.TAGS
429 :     $(CP) gforth.TAGS $@
430 :    
431 : pazsan 1.65 gforth.TAGS: @kernel_fi@ gforth $(GFORTH_FI_SRC) primitives.TAGS
432 : anton 1.66 $(FORTHK) etags.fs startup.fs -e bye
433 : pazsan 1.65 cat TAGS primitives.TAGS kernel.TAGS >gforth.TAGS
434 : anton 1.67 rm TAGS
435 : anton 1.34
436 : pazsan 1.65 engine.s: engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES) config.h
437 : anton 1.66 $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -S $(srcdir)/engine.c
438 : pazsan 1.1
439 : pazsan 1.65 engine.o: engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES) config.h
440 : anton 1.66 $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c $(srcdir)/engine.c
441 : pazsan 1.36
442 : anton 1.87 engine-ditc.o: engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES) config.h
443 :     $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -DDOUBLY_INDIRECT -o $@ -c $(srcdir)/engine.c
444 :    
445 : anton 1.71 main.o: main.c machine.h threading.h $(INCLUDES) config.h version.h
446 : anton 1.66 $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c $(srcdir)/main.c
447 : anton 1.87
448 :     main-ditc.o: main.c machine.h threading.h $(INCLUDES) config.h version.h
449 :     $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -DDOUBLY_INDIRECT -o $@ -c $(srcdir)/main.c
450 : anton 1.9
451 :     strtoul.o: strtoul.c strtol.c
452 : pazsan 1.1
453 :     primitives.b: primitives
454 : anton 1.50 m4 -s $(srcdir)/primitives >$@
455 : pazsan 1.1
456 :     primitives.i : primitives.b prims2x.fs
457 : pazsan 1.93 $(FORTHK) prims2x.fs -e "s\" primitives.b\" ' output-c process-file bye" >$@-
458 :     $(CP) $@- $@
459 :     $(RM) $@-
460 : pazsan 1.1
461 :     prim_labels.i : primitives.b prims2x.fs
462 : pazsan 1.93 $(FORTHK) prims2x.fs -e "s\" primitives.b\" ' output-label process-file bye" >$@-
463 :     $(CP) $@- $@
464 :     $(RM) $@-
465 : pazsan 1.1
466 : pazsan 1.82 aliases.fs: primitives.b prims2x.fs aliases0.fs
467 : pazsan 1.93 $(CP) aliases0.fs $@-
468 :     $(FORTHK) prims2x.fs -e "s\" primitives.b\" ' output-alias process-file bye" >>$@-
469 :     $(CP) $@- $@
470 :     $(RM) $@-
471 : pazsan 1.1
472 : pazsan 1.84 primitives.fs: primitives.b prims2x.fs primitives0.fs
473 : pazsan 1.93 $(CP) primitives0.fs primitives.fs-
474 :     $(FORTHK) prims2x.fs -e "s\" primitives.b\" ' output-forth process-file bye" >>$@-
475 :     $(CP) $@- $@
476 :     $(RM) $@-
477 : anton 1.27
478 : anton 1.50 primitives.TAGS: primitives.b prims2x.fs
479 : pazsan 1.93 $(FORTHK) prims2x.fs -e "s\" $(srcdir)/primitives.b\" ' output-tag process-file bye" >$@-
480 :     $(CP) $@- $@
481 :     $(RM) $@-
482 : pazsan 1.1
483 : anton 1.91 doc.fd: makedoc.fs $(GFORTH_FI_SRC)
484 : anton 1.66 $(FORTHK) -e "s\" doc.fd\"" makedoc.fs startup.fs code.fs -e bye
485 : anton 1.20
486 : pazsan 1.65 crossdoc.fd: $(KERN_SRC) version.fs $(FORTH_GEN0)
487 : anton 1.66 $(FORTHK) -e 's" mach32l.fs"' main.fs -e bye
488 : anton 1.35
489 : pazsan 1.28 gforth.texi: gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd
490 : pazsan 1.93 $(FORTHK) -m 100000 ds2texi.fs prims2x.fs -e "s\" $(srcdir)/primitives.b\" ' register-doc process-file" crossdoc.fd doc.fd -e "s\" $(srcdir)/gforth.ds\" r/o open-file throw ds2texi bye" >$@-
491 :     $(CP) $@- $@
492 :     $(RM) $@-
493 : anton 1.35
494 : anton 1.91 checkdoc: gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd answords.fs gforth.texi
495 :     $(FORTHK) ds2texi.fs prims2x.fs -e "s\" $(srcdir)/primitives.b\" ' register-doc process-file" crossdoc.fd doc.fd answords.fs -e bye
496 :     -grep unknown gforth.texi
497 : anton 1.66
498 :     dvi: gforth.dvi
499 : pazsan 1.1
500 : anton 1.45 gforth.dvi gforth.fns: gforth.texi
501 : anton 1.68 $(TEXI2DVI) gforth.texi
502 : anton 1.5
503 :     gforth.ps: gforth.dvi
504 : anton 1.9 $(DVI2PS) gforth.dvi -o $@
505 : anton 1.40
506 : anton 1.66 info: gforth.info
507 :    
508 : anton 1.94 gforth.info gforth.info-*: gforth.texi
509 : anton 1.11 -$(MAKEINFO) gforth.texi
510 : anton 1.15
511 :     html: gforth.texi
512 :     -$(RM) html/*
513 :     -mkdir html
514 : pazsan 1.70 cd html; $(TEXI2HTML) -menu -split_node ../gforth.texi
515 : pazsan 1.63
516 :     doc: gforth.ps html
517 : pazsan 1.1
518 : anton 1.9 # For an explanation of the following Makefile rules, see node
519 :     # `Automatic Remaking' in GNU Autoconf documentation.
520 : pazsan 1.69 $(srcdir)/configure: configure.in
521 :     cd $(srcdir) && autoconf
522 :    
523 : anton 1.51 # autoheader might not change config.h.in, so touch a stamp file.
524 : pazsan 1.69 $(srcdir)/config.h.in: stamp-h.in
525 :     $(srcdir)/stamp-h.in: configure.in acconfig.h
526 :     cd $(srcdir) && autoheader
527 :     echo timestamp > $(srcdir)/stamp-h.in
528 : anton 1.51
529 : pazsan 1.69 config.h: stamp-h
530 :     stamp-h: config.h.in config.status
531 : anton 1.51 CONFIG_FILES=$@ CONFIG_HEADERS=config.h ./config.status
532 :     echo > stamp-h
533 : pazsan 1.69 Makefile: Makefile.in config.status
534 : anton 1.51 CONFIG_FILES=$@ CONFIG_HEADERS=config.h ./config.status
535 :    
536 : pazsan 1.69 config.status: configure
537 : anton 1.51 ./config.status --recheck
538 : pazsan 1.30
539 : anton 1.51
540 :     #create files for DOS, because DOS cannot do it itself
541 : pazsan 1.30 makefile.dos: mkdosmf.sed Makefile.in
542 :     sed -f mkdosmf.sed <Makefile.in >makefile.dos
543 : pazsan 1.69
544 :     makefile.os2: mkos2mf.sed Makefile.in
545 :     sed -f mkos2mf.sed <Makefile.in >makefile.os2
546 :     echo '%.o: %.c' >>makefile.os2
547 :     echo ' $$(GCC) $$(CFLAGS) -c $$<' >>makefile.os2
548 : pazsan 1.48
549 :     history.dos: history.fs Makefile.in
550 :     sed -e "s,~/\.gforth-history,/gforth.his,g" <history.fs >history.dos
551 : pazsan 1.31
552 :     startup.dos: startup.fs Makefile.in
553 :     sed -e "s/\\\\ include doskey/include doskey/g" \
554 : pazsan 1.43 -e "s/include vt100key/\\\\ include vt100key/g" <startup.fs >startup.dos
555 : anton 1.51

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help