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