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

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help