[gforth] / gforth / Makefile.in  

gforth: gforth/Makefile.in


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

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help