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

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help