Annotation of gforth/Makefile.in, revision 1.170

1.38      anton       1: #Makefile for Gforth
                      2: 
1.127     anton       3: #Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
1.38      anton       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: 
1.9       anton      21: # 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.
1.1       pazsan     25: 
1.106     jwilke     26: # Warning:
                     27: # For some stupid reason setting SHELL to bash does not work properly with
                     28: # DOS. If you want to use shell-specific things that must run with DOS make
                     29: # an external batch file and call it with bash (see versions.bsh).
                     30: 
                     31: # ------------- gforth version
                     32: 
1.110     anton      33: VERSION        = @VERSION@
1.129     pazsan     34: DOSVERSION=`echo $(VERSION)|sed 's/\.//g'`
1.106     jwilke     35: 
                     36: # -------------        System specific variables       
                     37: 
1.110     anton      38: machine=@machine@
                     39: kernel_fi=@kernel_fi@
1.123     pazsan     40: EXE=@EXE@
1.110     anton      41: 
1.106     jwilke     42: # this is the type of machine
                     43: # used to extend the include path with ./arch/$machine
1.110     anton      44: # so we can include a machine specific 
1.106     jwilke     45: # machine.h file
                     46: 
                     47: PATHSEP = @PATHSEP@
                     48: 
                     49: osclass = @OSCLASS@
                     50: 
                     51: # -------------        Utility programs
                     52: 
1.9       anton      53: SHELL  = /bin/sh
1.4       pazsan     54: RM     = rm
1.74      pazsan     55: RMTREE = rm -rf
1.144     pazsan     56: CP     = cp -p
1.129     pazsan     57: MV     = mv
1.74      pazsan     58: TAR    = tar cf -
1.9       anton      59: INSTALL        = @INSTALL@
                     60: INSTALL_PROGRAM = @INSTALL_PROGRAM@
                     61: INSTALL_DATA = @INSTALL_DATA@
                     62: LN_S   = @LN_S@
1.48      pazsan     63: GCC    = @CC@
1.23      anton      64: CC     = $(GCC)
1.155     jwilke     65: FORTHPATH = ~+$(PATHSEP)$(libdir)/gforth/site-forth$(PATHSEP)$(siteforthdir)$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)
1.72      anton      66: FORTHSIZES = @FORTHSIZES@
1.143     anton      67: FORTH_ARGS = --die-on-signal -p $(FORTHPATH)$(PATHSEP)$(srcdir)
                     68: ENGINE = ./gforth
                     69: FORTH  = $(ENGINE) $(FORTH_ARGS)
                     70: ENGINE_FAST = $(ENGINE)-fast
                     71: FORTH_FAST     = $(ENGINE_FAST) $(FORTH_ARGS)
1.140     pazsan     72: FORTHKFLAGS= --die-on-signal -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)" -i $(kernel_fi)
1.152     anton      73: FORTHK = $(ENGINE) $(FORTHKFLAGS)
                     74: FORTHP = $(ENGINE) --die-on-signal -i ./$(kernel_fi)
1.22      anton      75: STRIP  = strip
1.169     anton      76: TEXI2DVI = texi2dvi -e
1.114     anton      77: DVI2PS = dvips -Z
1.99      anton      78: #you can get texi2html from http://wwwcn.cern.ch/dci/texi2html/
1.170   ! anton      79: MAKEINFO = makeinfo
1.15      anton      80: TEXI2HTML = texi2html
1.106     jwilke     81: 
                     82: # -------------        Compiler Flags
                     83: 
1.9       anton      84: XCFLAGS        = @CFLAGS@
                     85: XDEFINES = @DEFS@
1.12      anton      86: SWITCHES = $(XCFLAGS) $(XDEFINES) #-DNDEBUG #turn off assertions
1.48      pazsan     87: ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves
1.30      pazsan     88: DEBUGFLAG = @DEBUGFLAG@
1.154     pazsan     89: CFLAGS = $(DEBUGFLAG) -I$(srcdir)/engine -I$(srcdir)/arch/$(machine) -O3 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(FORTHPATH)\"
1.1       pazsan     90: 
                     91: #John Wavrik should use -Xlinker -N to get a writable text (executable)
1.30      pazsan     92: XLDFLAGS = @LDFLAGS@
1.117     anton      93: LDFLAGS        =  $(DEBUGFLAG) $(XLDFLAGS)
1.9       anton      94: LDLIBS = @LIBS@
                     95: 
1.106     jwilke     96: # ------------ Install Directorys
                     97: 
1.52      anton      98: VPATH = @srcdir@
1.9       anton      99: prefix = @prefix@
                    100: exec_prefix = @exec_prefix@
                    101: srcdir = @srcdir@
                    102: bindir = $(exec_prefix)/bin
                    103: #read-only architecture-independent files
                    104: datadir = $(prefix)/share
                    105: #read-only architecture-dependent non-ascii files
                    106: libdir = $(prefix)/lib
                    107: infodir = $(prefix)/info
1.52      anton     108: mandir = $(prefix)/man
                    109: man1dir= $(mandir)/man1
                    110: man1ext= .1
                    111: #older emacses have their site-lisp in $(libdir)/emacs/
1.110     anton     112: emacssitelispdir=@lispdir@
1.141     anton     113: siteforthdir=$(datadir)/gforth/site-forth
1.1       pazsan    114: 
1.124     pazsan    115: CVSDIRS = CVS engine/CVS kernel/CVS doc/CVS asm/CVS ec/CVS test/CVS \
                    116:        compat/CVS \
                    117:        arch/CVS arch/generic/CVS arch/m68k/CVS arch/mips/CVS \
                    118:        arch/386/CVS arch/hppa/CVS arch/sparc/CVS arch/power/CVS \
                    119:        arch/alpha/CVS arch/4stack/CVS arch/misc/CVS arch/6502/CVS \
                    120:        arch/8086/CVS arch/avr/CVS arch/c165/CVS arch/h8/CVS \
                    121:        arch/shboom/CVS \
                    122: 
1.135     anton     123: INCLUDES = engine/forth.h engine/threaded.h engine/io.h
                    124: 
1.52      anton     125: KERN_SRC = \
1.155     jwilke    126:        mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
                    127:        machpc.fs \
1.100     anton     128:        kernel/aliases0.fs \
                    129:        kernel/aliases.fs \
                    130:        kernel/args.fs \
1.118     anton     131:        chains.fs \
1.100     anton     132:        kernel/cond.fs \
                    133:        kernel/cond-old.fs \
1.52      anton     134:        cross.fs \
1.100     anton     135:        kernel/errore.fs \
                    136:        kernel/files.fs \
                    137:        kernel/require.fs \
                    138:        kernel/paths.fs \
                    139:        kernel/kernel.fs \
                    140:        kernel/main.fs \
                    141:        kernel/prim0.fs \
                    142:        search.fs \
1.156     jwilke    143:        kernel/quotes.fs \
1.100     anton     144:        kernel/tools.fs \
                    145:        kernel/toolsext.fs \
                    146:        kernel/vars.fs \
                    147:        kernel/accept.fs \
                    148:        kernel/basics.fs \
1.107     pazsan    149:        kernel/int.fs \
                    150:        kernel/comp.fs \
1.100     anton     151:        kernel/io.fs \
                    152:        kernel/license.fs \
                    153:        kernel/nio.fs \
1.108     pazsan    154:        kernel/saccept.fs \
                    155:        kernel/doers.fs \
1.157     jwilke    156:        kernel/getdoers.fs \
                    157:        kernel/pass.fs
1.52      anton     158: 
1.107     pazsan    159: EC_SRC = \
1.118     anton     160:        asm/README \
1.107     pazsan    161:        asm/bitmask.fs \
                    162:        asm/numref.fs \
                    163:        asm/basic.fs \
                    164:        asm/generic.fs \
                    165:        asm/target.fs \
1.118     anton     166:        ec/README \
1.107     pazsan    167:        ec/mirror.fs \
                    168:        ec/shex.fs \
                    169:        ec/builttag.fs \
                    170:        ec/dotx.fs \
                    171:        ec/nesting.fs
                    172: 
1.52      anton     173: GFORTH_FI_SRC = \
                    174:        assert.fs \
1.145     pazsan    175:        backtrace.fs \
1.100     anton     176:        blocked.fb \
1.52      anton     177:        blocks.fs \
                    178:        bufio.fs \
                    179:        debug.fs \
1.100     anton     180:        debugs.fs \
1.162     anton     181:        ekey.fs \
1.100     anton     182:        savesys.fs \
1.52      anton     183:        environ.fs \
1.82      pazsan    184:        errors.fs \
1.163     anton     185:        exceptions.fs \
1.82      pazsan    186:        extend.fs \
1.52      anton     187:        float.fs \
                    188:        glocals.fs \
                    189:        hash.fs \
                    190:        history.fs \
1.64      anton     191:        intcomp.fs \
1.101     pazsan    192:        locals.fs \
1.52      anton     193:        look.fs \
1.100     anton     194:        search.fs \
1.52      anton     195:        see.fs \
1.85      pazsan    196:        see-ext.fs \
1.52      anton     197:        source.fs \
                    198:        startup.fs \
                    199:        struct.fs \
                    200:        stuff.fs \
1.60      pazsan    201:        tasker.fs \
1.52      anton     202:        termsize.fs \
                    203:        vt100.fs \
                    204:        vt100key.fs \
1.101     pazsan    205:        wordinfo.fs \
                    206:        lib.fs \
                    207:        sieve.fs \
                    208:        add.fs
1.52      anton     209: 
1.107     pazsan    210: FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_SRC) $(EC_SRC) \
1.75      anton     211:        ans-report.fs ansi.fs answords.fs \
1.100     anton     212:        code.fs colorize.fs comp-i.fs \
1.52      anton     213:        doskey.fs ds2texi.fs \
1.124     pazsan    214:        envos.fs envos.dos envos.os2 etags.fs filedump.fs fi2c.fs \
1.167     pazsan    215:        glosgen.fs gray.fs httpd.fs \
1.160     anton     216:        make-app.fs doc/makedoc.fs \
1.155     jwilke    217:        more.fs other.fs prims2x.fs random.fs \
1.167     pazsan    218:        table.fs string.fs \
1.52      anton     219:        tt.fs sokoban.fs \
1.118     anton     220:        unbuffered.fs wordsets.fs \
1.100     anton     221:        test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs \
1.124     pazsan    222:        test/other.fs test/checkans.fs \
1.65      pazsan    223:        bubble.fs siev.fs matrix.fs fib.fs \
1.151     crook     224:        oof.fs oofsampl.fs objects.fs objexamp.fs mini-oof.fs moof-exm.fs \
                    225:        moofglos.fs
1.1       pazsan    226: 
1.131     anton     227: COMPAT = compat/README \
                    228:        compat/anslocal.fs \
                    229:        compat/assert.fs \
                    230:        compat/control.fs \
                    231:        compat/defer.fs \
                    232:        compat/exception.fs \
                    233:        compat/loops.fs \
                    234:        compat/required.fs \
                    235:        compat/struct.fs \
                    236:        compat/vocabulary.fs
1.100     anton     237: 
1.111     anton     238: GFORTH_TEXI =  doc/gforth.texi doc/version.texi
                    239: 
1.100     anton     240: ALLSUBDIRS = engine
                    241: 
1.135     anton     242: ARCHS =        \
                    243:        arch/generic/machine.h \
                    244:        arch/m68k/machine.h \
                    245:        arch/mips/machine.h \
                    246:        arch/386/machine.h \
                    247:        arch/hppa/machine.h \
                    248:        arch/hppa/cache.c \
                    249:        arch/sparc/machine.h \
                    250:        arch/power/machine.h \
                    251:        arch/power/_sync_cache_range.c \
                    252:        arch/alpha/machine.h \
                    253:        arch/4stack/README \
                    254:        arch/4stack/asm.fs \
                    255:        arch/4stack/mach.fs \
                    256:        arch/4stack/prim.fs \
                    257:        arch/4stack/mach.sh \
                    258:        arch/4stack/relocate.fs \
                    259:        arch/misc/README \
                    260:        arch/misc/asm.fs \
                    261:        arch/misc/mach.fs \
                    262:        arch/misc/prim.fs \
                    263:        arch/misc/sim.fs \
                    264:        arch/misc/sokoban.fs \
                    265:        arch/misc/tt.fs \
                    266:        arch/6502/asm.fs \
                    267:        arch/6502/prim.fs \
                    268:        arch/6502/mach.fs \
                    269:        arch/6502/zero.fs \
                    270:        arch/6502/softuart.fs \
                    271:        arch/6502/cold.fs \
                    272:        arch/8086/asm.fs \
                    273:        arch/8086/mach.fs \
                    274:        arch/8086/mach.sh \
                    275:        arch/8086/prim.fs \
                    276:        arch/avr/asm.fs \
                    277:        arch/c165/asm.fs \
                    278:        arch/c165/mach.fs \
                    279:        arch/c165/prim.fs \
                    280:        arch/h8/asm.fs \
                    281:        arch/shboom/asm.fs \
                    282:        arch/shboom/compiler.fs \
                    283:        arch/shboom/dis.fs \
                    284:        arch/shboom/mach.fs \
                    285:        arch/shboom/prim.fs \
                    286:        arch/shboom/dis2.fs \
                    287:        arch/shboom/sh.p \
                    288:        arch/shboom/doers.fs
                    289: 
                    290: SOURCES        = $(CVSDIRS) compat Makefile.in Makedist.in engine/Makefile.in gforthmi.in \
                    291:        configure.in configure config.sub config.guess elisp-comp missing \
                    292:        acconfig.h acinclude.m4 engine/config.h.in stamp-h.in \
                    293:        install-sh INSTALL INSTALL.BINDIST NEWS README ToDo BUGS model \
                    294:        COPYING AUTHORS ChangeLog Benchres aclocal.m4 \
                    295:        doc/gforth.ds doc/texinfo.tex doc/gforth.1 doc/version.texi.in \
                    296:        gforth.el \
                    297:        prim engine/engine.c engine/main.c engine/io.c engine/memcmpc.c \
1.149     anton     298:        engine/signals.c $(ARCHS) \
1.135     anton     299:        engine/getopt.c engine/getopt1.c engine/getopt.h engine/select.c \
                    300:        engine/ecvt.c engine/memcmp.c engine/strtol.c engine/strtoul.c \
                    301:        engine/ansidecl.h engine/memmove.c \
                    302:        engine/pow10.c engine/atanh.c engine/cleanalign.c \
                    303:        engine/strerror.c engine/strsignal.c engine/dblsub.c \
                    304:        INSTALL.DOS makefile.dos engine/makefile.dos mkdosmf.sed config.bat \
1.141     anton     305:        dosconf.h gforthmi.bat mkinstalldirs siteinit.fs \
1.135     anton     306:        versions.bsh \
                    307:        configure.cmd mkos2mf.sed os2conf.h makefile.os2 engine/makefile.os2 \
                    308:        gforthmi.cmd glosgen.glo doc/glossaries.doc \
                    309:        $(INCLUDES) $(FORTH_SRC) $(COMPAT) \
1.158     anton     310:        timings.sc \
                    311:        test/coretest.out test/checkans.out
1.135     anton     312: 
1.5       anton     313: RCS_FILES =  ToDo model high-level
1.1       pazsan    314: 
1.143     anton     315: GEN = gforth$(EXE) gforth-ditc$(EXE) gforth-fast$(EXE) kernel/version.fs
1.1       pazsan    316: 
                    317: # things that need a working forth system to be generated
1.100     anton     318: FORTH_GEN0 = prim.b engine/prim.i engine/prim_lab.i kernel/aliases.fs kernel/prim.fs
1.65      pazsan    319: FORTH_GEN =  $(FORTH_GEN0) @KERNEL@ gforth.fi
1.1       pazsan    320: # this is used for antidependences,
1.65      pazsan    321: FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@ 
1.5       anton     322: 
1.38      anton     323: #distributed documentation
1.139     anton     324: DOCDIST = doc/gforth.info doc/gforth.info-* doc/gforth.ps
1.5       anton     325: 
1.48      pazsan    326: KERNLS = kernl16b.fi- kernl16l.fi- \
                    327:         kernl32b.fi- kernl32l.fi- \
                    328:         kernl64b.fi- kernl64l.fi-
1.30      pazsan    329: 
1.134     pazsan    330: GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) doc/gforth.texi doc/gforth.dvi doc/gforth.ps Makefile Makedist engine/Makefile configure
1.1       pazsan    331: 
1.9       anton     332: #standards.info recommends this:
                    333: .SUFFIXES:
                    334: .SUFFIXES: .c .o
                    335: 
1.106     jwilke    336: 
1.100     anton     337: all:   kernel/version.fs more
1.1       pazsan    338: 
1.106     jwilke    339: # use this dependency for phony targets just as mostlyclean,...
                    340: FORCE: ;
                    341: 
1.78      anton     342: #this rule avoids remaking everything after minor changes in Makefile.in
1.100     anton     343: version:       Makefile.in
1.94      anton     344:                if test -r $@ && test x'$(VERSION)' = x`cat $@` ; then true ; else echo $(VERSION) > $@ ; fi
1.78      anton     345: 
1.106     jwilke    346: # With dos we use normal dos echo
                    347: # we cannot pipe the output to engine/version.h directly because
                    348: # of the "/ and \" problem. Copying works because we use the
                    349: # shell und file utilities.
                    350: 
1.100     anton     351: kernel/version.fs:     version
1.123     pazsan    352:        $(MAKE) gforth$(EXE)
1.129     pazsan    353:        echo ": version-string s\" $(VERSION)\" ;" > kernel/version.fs
1.2       pazsan    354: 
1.149     anton     355: more:  engine $(FORTH_GEN) $(GEN)
1.2       pazsan    356: 
1.1       pazsan    357: #from the gcc Makefile: 
                    358: #"Deletion of files made during compilation.
                    359: # There are four levels of this:
                    360: #   `mostlyclean', `clean', `distclean' and `realclean'.
                    361: # `mostlyclean' is useful while working on a particular type of machine.
                    362: # It deletes most, but not all, of the files made by compilation.
                    363: # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
                    364: # `clean' deletes everything made by running `make all'.
                    365: # `distclean' also deletes the files made by config.
                    366: # `realclean' also deletes everything that could be regenerated automatically."
                    367: 
1.106     jwilke    368: mostlyclean:   FORCE
1.118     anton     369:                -$(RM) -rf engine/*.s gforth.fi *.fi~ *.fi- kernel/version.fs \
                    370:                *TAGS gforth~ \
1.100     anton     371:                doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
                    372:                doc/gforth.aux doc/gforth.cp doc/gforth.cps \
                    373:                doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
                    374:                doc/gforth.pg \
                    375:                doc/gforth.toc doc/gforth.tp doc/gforth.vr html \
1.110     anton     376:                gforth-$(VERSION).tar.gz
1.45      anton     377: 
1.146     crook     378: # Just the stuff needed to rebuild the documentation nac03feb1999
                    379: docclean:      FORCE
                    380:                -$(RM) -rf doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
                    381:                doc/gforth.aux doc/gforth.cp doc/gforth.cps \
                    382:                doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
                    383:                doc/gforth.pg \
                    384:                doc/gforth.toc doc/gforth.tp doc/gforth.vr html
                    385: 
1.45      anton     386: clean:         mostlyclean
1.143     anton     387:                -$(RM) -rf $(GEN) engine/gforth$(EXE) \
                    388:                engine/gforth-fast$(EXE) engine/gforth-ditc$(EXE) \
1.119     anton     389:                *.o engine/*.o arch/*/*.o version
1.1       pazsan    390: 
                    391: distclean:     clean
1.118     anton     392:                -$(RM) config.cache config.log config.status \
1.134     pazsan    393:                engine/config.h Makefile Makedist engine/Makefile \
1.118     anton     394:                stamp-h engine/stamp-h \
1.131     anton     395:                doc/version.texi gforthmi
1.1       pazsan    396: 
1.53      anton     397: #realclean is useless, but dangerous, so it's commented out
                    398: #realclean:    distclean
                    399: #              -$(RM) $(GEN_PRECIOUS)
1.1       pazsan    400: 
1.45      anton     401: #mostlyclean, but also remove some of the stuff that is distributed
                    402: virtualclean:  mostlyclean
                    403:                -$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \
1.59      anton     404:                gforth-$(VERSION).tar.gz config.cache *~ */*~
1.45      anton     405: 
1.135     anton     406: #Some makes (Ultrix, SunOS, IRIX) are so broken, they cannot read the
                    407: #Makefile if it contains our dist rules.  Therefore we have put these
                    408: #rules in Makedist (you can use them with GNU make on these systems).
1.136     anton     409: dist:          Makedist FORCE
1.135     anton     410:                $(MAKE) -f Makedist d$@
1.134     pazsan    411: 
1.136     anton     412: dosdist:       Makedist FORCE
1.135     anton     413:                $(MAKE) -f Makedist d$@
1.134     pazsan    414: 
1.136     anton     415: srcdist:       Makedist FORCE
1.135     anton     416:                $(MAKE) -f Makedist d$@
1.134     pazsan    417: 
1.136     anton     418: srconlydist:   Makedist FORCE
1.135     anton     419:                $(MAKE) -f Makedist d$@
1.134     pazsan    420: 
1.136     anton     421: docdist:       Makedist FORCE
1.135     anton     422:                $(MAKE) -f Makedist d$@
1.134     pazsan    423: 
1.136     anton     424: htmldist:      Makedist FORCE
1.135     anton     425:                $(MAKE) -f Makedist d$@
1.1       pazsan    426: 
1.136     anton     427: bindist:       Makedist FORCE
1.135     anton     428:                $(MAKE) -f Makedist d$@
                    429: 
1.136     anton     430: binonlydist:   Makedist FORCE
1.135     anton     431:                $(MAKE) -f Makedist d$@
1.22      anton     432: 
                    433: 
1.15      anton     434: #strip gforth, because the debugging stuff is hardly useful once
                    435: # gforth manages to execute more than a few primitives
                    436: 
1.68      anton     437: #install does not depend on gforth.info, because that would require
                    438: #supplying a lot of files that can be easily generated (only info is
                    439: #hard to generate)
1.131     anton     440: install:       gforth$(EXE) $(FORTH_SRC) $(kernel_fi) gforth.fi gforthmi doc/gforth.1 prim install.TAGS installdirs
1.141     anton     441:                touch $(siteforthdir)/siteinit.fs
1.133     pazsan    442:                -$(RM) $(bindir)/gforth$(EXE) $(bindir)/gforth-$(VERSION)$(EXE) $(bindir)/gforthmi
1.147     anton     443:                -$(RM) $(bindir)/gforth-fast$(EXE) $(bindir)/gforth-fast-$(VERSION)$(EXE)
1.131     anton     444:                $(INSTALL_PROGRAM) -s gforth$(EXE) $(bindir)/gforth-$(VERSION)$(EXE)
1.150     anton     445:                (cd $(bindir) && $(LN_S) gforth-$(VERSION)$(EXE) gforth$(EXE))
1.143     anton     446:                $(INSTALL_PROGRAM) -s gforth-fast$(EXE) $(bindir)/gforth-fast-$(VERSION)$(EXE)
1.150     anton     447:                (cd $(bindir) && $(LN_S) gforth-fast-$(VERSION)$(EXE) gforth-fast$(EXE))
1.131     anton     448:                $(INSTALL_PROGRAM) gforthmi $(bindir)/gforthmi-$(VERSION)
1.147     anton     449:                $(INSTALL_PROGRAM) gforth-ditc $(libdir)/gforth/$(VERSION)
1.150     anton     450:                (cd $(bindir) && $(LN_S) gforthmi-$(VERSION) gforthmi)
1.100     anton     451:                -$(INSTALL_DATA) $(srcdir)/doc/gforth.1 $(man1dir)
1.131     anton     452:                -for i in $(srcdir)/doc/gforth.info*; do $(INSTALL_DATA) $$i $(infodir); done
                    453:                for i in $(FORTH_SRC) $(COMPAT) prim; do \
                    454:                        $(INSTALL_DATA) $(srcdir)/$$i $(datadir)/gforth/$(VERSION)/$$i; \
1.9       anton     455:                done
1.110     anton     456:                $(INSTALL_DATA) $(kernel_fi) $(datadir)/gforth/$(VERSION)
1.132     anton     457:                $(RM) gforth.fi
1.141     anton     458:                GFORTHD="./gforth-ditc -p$(libdir)/gforth/site-forth$(PATHSEP)$(siteforthdir)$(PATHSEP)$(datadir)/gforth/$(VERSION) -i $(kernel_fi)" GFORTH="./gforth-ditc --die-on-signal -i $(kernel_fi) startup.fs" ./gforthmi gforth.fi $(FORTHSIZES) startup.fs #gforth.fi contains some path names
1.83      pazsan    459:                $(INSTALL_DATA) gforth.fi $(libdir)/gforth/$(VERSION)
1.131     anton     460:                $(INSTALL_DATA) install.TAGS $(datadir)/gforth/$(VERSION)/TAGS
1.164     crook     461:                # after install, remove these because they are owned by ROOT
                    462:                $(RM) gforth.fi install.TAGS
1.137     pazsan    463:                @if test -d "$(emacssitelispdir)"; then \
1.66      anton     464:                        $(INSTALL_DATA) $(srcdir)/gforth.el $(emacssitelispdir); \
1.55      pazsan    465:                else \
1.66      anton     466:                        echo ">>>>>Please install $(srcdir)/gforth.el in your .../emacs/site-lisp directory"; \
1.52      anton     467:                fi
1.108     pazsan    468:                @echo ">>>>> Please make an entry for Gforth in your info dir file; e.g.:"; \
1.72      anton     469:                echo "* Gforth: (gforth).       A fast interpreter for the Forth language."
1.40      anton     470: 
1.66      anton     471: install-strip: install
                    472: 
1.78      anton     473: installdirs:   mkinstalldirs
1.141     anton     474:                for i in $(bindir) $(man1dir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(siteforthdir); do \
                    475:                        $(srcdir)/mkinstalldirs $$i; \
                    476:                done
1.131     anton     477:                for i in $(CVSDIRS); do \
                    478:                        $(srcdir)/mkinstalldirs $(datadir)/gforth/$(VERSION)/`dirname $$i`; \
                    479:                done
                    480:                $(RM) -rf $(datadir)/gforth/$(VERSION)/arch $(datadir)/gforth/$(VERSION)/engine
1.78      anton     481: 
1.40      anton     482: #deinstall all files specific to this version of gforth
                    483: #to uninstall version foo, type `make uninstall VERSION=foo'
1.106     jwilke    484: uninstall:     FORCE
1.131     anton     485:                -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)$(EXE) $(bindir)/gforthmi-$(VERSION)
                    486:                @echo -e "To remove Gforth completely, type\n$(RM) -rf $(bindir)/gforth$(EXE) $(bindir)/gforthmi $(man1dir)/gforth.1 $(infodir)/gforth.info* $(datadir)/gforth $(libdir)/gforth"
1.40      anton     487: 
1.123     pazsan    488: check test:    gforth$(EXE) gforth.fi
1.158     anton     489:                $(FORTH) test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs -e bye | diff -c - $(srcdir)/test/coretest.out
1.100     anton     490:                $(FORTH) test/other.fs -e bye
1.158     anton     491:                $(FORTH) code.fs test/checkans.fs -e bye | diff -c - $(srcdir)/test/checkans.out
1.153     jwilke    492:                $(FORTHK) -m 100000 prims2x.fs -e \
                    493:                  "c-flag on s\" $(srcdir)/prim.b\" ' output-c process-file bye"| \
                    494:                  diff -c - $(srcdir)/engine/prim.i
1.21      anton     495: 
1.143     anton     496: bench:         gforth-fast$(EXE) gforth.fi
1.40      anton     497:                @echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
1.143     anton     498:                time $(FORTH_FAST) siev.fs -e "main bye"
                    499:                time $(FORTH_FAST) bubble.fs -e "main bye"
                    500:                time $(FORTH_FAST) -m 160000 matrix.fs -e "main bye"
                    501:                time $(FORTH_FAST) fib.fs -e "main bye"
1.40      anton     502: 
1.106     jwilke    503: # -------------        Make forth images
1.87      anton     504: 
1.150     anton     505: # How to make new images:
1.106     jwilke    506: # 1. Produce an image called kernlXYZ.fi-
                    507: #    the original kernel.fi is not touched because it's needed for creation
                    508: # 2. copy old kernlXYZ.fi to kernlXYZ.fi~
                    509: #    that's a backup copy in case the new kernels don't work
                    510: # 3. copy new kernels to kernlXYZ.fi
                    511: #    these are the ones we want to use now
1.1       pazsan    512: 
1.100     anton     513: kernl16l.fi-:  $(KERN_SRC) kernel/version.fs mach16l.fs $(FORTH_GEN0)
1.155     jwilke    514:                $(FORTHK) -e 's" mach16l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16l.fi- $(bindir)/gforth-$(VERSION) bye"
1.87      anton     515: 
1.100     anton     516: kernl16b.fi-:  $(KERN_SRC) kernel/version.fs mach16b.fs $(FORTH_GEN0)
1.132     anton     517:                $(FORTHK) -e 's" mach16b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16b.fi- $(bindir)/gforth-$(VERSION) bye"
1.87      anton     518: 
1.100     anton     519: kernl32l.fi-:  $(KERN_SRC) kernel/version.fs mach32l.fs $(FORTH_GEN0)
1.132     anton     520:                $(FORTHK) -e 's" mach32l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32l.fi- $(bindir)/gforth-$(VERSION) bye"
1.87      anton     521: 
1.100     anton     522: kernl32b.fi-:  $(KERN_SRC) kernel/version.fs mach32b.fs $(FORTH_GEN0)
1.132     anton     523:                $(FORTHK) -e 's" mach32b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32b.fi- $(bindir)/gforth-$(VERSION) bye"
1.100     anton     524: 
                    525: kernl64l.fi-:  $(KERN_SRC) kernel/version.fs mach64l.fs $(FORTH_GEN0)
1.132     anton     526:                $(FORTHK) -e 's" mach64l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64l.fi- $(bindir)/gforth-$(VERSION) bye"
1.100     anton     527: 
                    528: kernl64b.fi-:  $(KERN_SRC) kernel/version.fs mach64b.fs $(FORTH_GEN0)
1.132     anton     529:                $(FORTHK) -e 's" mach64b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64b.fi- $(bindir)/gforth-$(VERSION) bye"
1.100     anton     530: 
1.166     pazsan    531: kernl-%.fi:    arch/%/mach.fs $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
1.132     anton     532:                $(FORTHK) -e 's" $<"' $(srcdir)/kernel/main.fs -e "save-cross $@- $(bindir)/gforth-$(VERSION) bye"
1.100     anton     533:                if [ -f `echo $< | sed s/fs/sh/` ]; \
                    534:                then sh `echo $< | sed s/fs/sh/` $@; \
                    535:                else $(CP) $@- $@; \
                    536:                fi
1.30      pazsan    537: 
1.166     pazsan    538: arch/%/mach.fs:        arch/%/prim.fs arch/%/asm.fs
1.122     pazsan    539: 
1.87      anton     540: kernl16b.fi:   $(KERNLS)
1.97      anton     541:                -$(CP) kernl16b.fi kernl16b.fi~
                    542:                -$(CP) kernl16b.fi- kernl16b.fi
1.87      anton     543: 
                    544: kernl16l.fi:   $(KERNLS)
1.97      anton     545:                -$(CP) kernl16l.fi kernl16l.fi~
                    546:                -$(CP) kernl16l.fi- kernl16l.fi
1.87      anton     547: 
1.96      anton     548: kernl32b.fi:   $(KERNLS)
1.97      anton     549:                -$(CP) kernl32b.fi kernl32b.fi~
                    550:                -$(CP) kernl32b.fi- kernl32b.fi
1.87      anton     551: 
                    552: kernl32l.fi:   $(KERNLS)
                    553:                -$(CP) kernl32l.fi kernl32l.fi~
                    554:                -$(CP) kernl32l.fi- kernl32l.fi
                    555: 
                    556: kernl64b.fi:   $(KERNLS)
                    557:                -$(CP) kernl64b.fi kernl64b.fi~
                    558:                -$(CP) kernl64b.fi- kernl64b.fi
                    559: 
                    560: kernl64l.fi:   $(KERNLS)
                    561:                -$(CP) kernl64l.fi kernl64l.fi~
                    562:                -$(CP) kernl64l.fi- kernl64l.fi
1.89      anton     563: 
1.100     anton     564: #kernl%.fi:    kernl%.fi- $(KERNLS)
                    565: #              -$(CP) $@ $@~
                    566: #              -$(CP) $< $@
1.87      anton     567: 
1.123     pazsan    568: gforth.fi:     $(kernel_fi) gforthmi gforth$(EXE) gforth-ditc$(EXE) $(GFORTH_FI_SRC)
1.165     anton     569:                GFORTHD="./gforth-ditc -p .$(PATHSEP)$(srcdir)" GFORTH="./gforth-ditc --die-on-signal -p .$(PATHSEP)$(srcdir) -i $(kernel_fi) startup.fs" ./gforthmi gforth.fi $(FORTHSIZES) $(FORTHKFLAGS) startup.fs
1.9       anton     570: 
1.106     jwilke    571: # -------------        Make c-engine
1.1       pazsan    572: 
1.100     anton     573: prim.b:                prim
                    574:                m4 -s $(srcdir)/prim >$@ 
                    575: 
                    576: engine/prim.i:         prim.b prims2x.fs
1.153     jwilke    577:                $(FORTHK) prims2x.fs -e "c-flag on s\" prim.b\" ' output-c process-file bye" >$@-
1.93      pazsan    578:                $(CP) $@- $@
                    579:                $(RM) $@-
1.1       pazsan    580: 
1.100     anton     581: engine/prim_lab.i:     prim.b prims2x.fs
1.153     jwilke    582:                $(FORTHK) prims2x.fs -e "c-flag on s\" prim.b\" ' output-label process-file bye" >$@-
1.93      pazsan    583:                $(CP) $@- $@
                    584:                $(RM) $@-
1.1       pazsan    585: 
1.100     anton     586: kernel/aliases.fs:     prim.b prims2x.fs kernel/aliases0.fs
                    587:                $(CP) kernel/aliases0.fs $@-
1.153     jwilke    588:                $(FORTHK) prims2x.fs -e "forth-flag on s\" prim.b\" ' output-alias process-file bye" >>$@-
1.93      pazsan    589:                $(CP) $@- $@
                    590:                $(RM) $@-
1.1       pazsan    591: 
1.100     anton     592: kernel/prim.fs:        prim.b prims2x.fs kernel/prim0.fs
                    593:                $(CP) kernel/prim0.fs kernel/prim.fs-
1.153     jwilke    594:                $(FORTHK) prims2x.fs -e "forth-flag on s\" prim.b\" ' output-forth process-file bye" >>$@-
1.93      pazsan    595:                $(CP) $@- $@
                    596:                $(RM) $@-
1.27      anton     597: 
1.130     pazsan    598: gforth$(EXE):          engines
1.123     pazsan    599:                -$(CP) gforth$(EXE) gforth~
1.110     anton     600:                $(CP) engine/$@ $@
1.106     jwilke    601:                @GFORTH_EXE@
                    602: 
1.143     anton     603: gforth-fast$(EXE):     engines
                    604:                $(CP) engine/$@ $@
                    605:                @GFORTHFAST_EXE@
                    606: 
1.130     pazsan    607: gforth-ditc$(EXE):     engines
1.110     anton     608:                $(CP) engine/$@ $@
1.106     jwilke    609:                @GFORTHDITC_EXE@
1.130     pazsan    610: 
1.168     jwilke    611: engines:       FORCE engine/Makefile engine/prim.i engine/prim_lab.i
1.143     anton     612:                cd engine && $(MAKE) gforth$(EXE) gforth-fast$(EXE) gforth-ditc$(EXE)
1.107     pazsan    613: 
                    614: # ------------- additional C primitives
                    615: 
                    616: %.c:           %.pri prim2cl.fs
                    617:                $(FORTHK) prim2cl.fs -e "file $< altogether bye" >$@
                    618: 
                    619: %.so:          %.c
                    620:                $(GCC) -shared $(CFLAGS) $< -o $@
1.106     jwilke    621: 
                    622: # -------------        Make Documentation
                    623: 
                    624: #TAGS is a GNU standard target
                    625: TAGS:          gforth.TAGS
                    626:                $(CP) gforth.TAGS $@
                    627: 
1.131     anton     628: install.TAGS:  gforth.TAGS
                    629:                sed 's:^\$(srcdir)/:$(datadir)/gforth/$(VERSION)/:' gforth.TAGS >install.TAGS
                    630: 
1.106     jwilke    631: gforth.TAGS:   @kernel_fi@ gforth $(GFORTH_FI_SRC) prim.TAGS
                    632:                $(FORTHK) etags.fs startup.fs -e bye
                    633:                cat TAGS prim.TAGS kernel.TAGS >gforth.TAGS
                    634:                rm TAGS
                    635: 
1.100     anton     636: prim.TAGS:     prim.b prims2x.fs
                    637:                $(FORTHK) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-tag process-file bye" >$@-
1.93      pazsan    638:                $(CP) $@- $@
                    639:                $(RM) $@-
1.1       pazsan    640: 
1.151     crook     641: doc/doc.fd:    doc/makedoc.fs $(GFORTH_FI_SRC) code.fs objects.fs oof.fs moofglos.fs
                    642:                $(FORTHK) -e "s\" doc/doc.fd\"" doc/makedoc.fs startup.fs code.fs objects.fs oof.fs moofglos.fs -e bye
1.20      anton     643: 
1.100     anton     644: doc/crossdoc.fd:       $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
                    645:                $(FORTHK) -e 's" mach32l.fs"' kernel/main.fs -e bye
1.35      anton     646: 
1.100     anton     647: doc/gforth.texi:       doc/gforth.ds prim.b ds2texi.fs prims2x.fs \
                    648:                doc/doc.fd doc/crossdoc.fd
                    649:                $(FORTHK) -m 100000 ds2texi.fs prims2x.fs -e "s\" $(srcdir)/prim.b\" ' register-doc process-file" doc/crossdoc.fd doc/doc.fd -e "s\" $(srcdir)/doc/gforth.ds\" r/o open-file throw ds2texi bye" >$@-
1.93      pazsan    650:                $(CP) $@- $@
                    651:                $(RM) $@-
1.35      anton     652: 
1.100     anton     653: checkdoc:      doc/gforth.ds prim.b ds2texi.fs prims2x.fs doc/doc.fd doc/crossdoc.fd answords.fs doc/gforth.texi
1.119     anton     654:                $(FORTHK) -m 1M ds2texi.fs prims2x.fs -e "s\" $(srcdir)/prim.b\" ' register-doc process-file" doc/crossdoc.fd doc/doc.fd answords.fs -e bye
1.100     anton     655:                -grep unknown doc/gforth.texi
1.66      anton     656: 
1.100     anton     657: dvi:           doc/gforth.dvi
1.1       pazsan    658: 
1.111     anton     659: doc/gforth.dvi doc/gforth.fns: $(GFORTH_TEXI)
1.100     anton     660:                cd doc; $(TEXI2DVI) gforth.texi
1.5       anton     661: 
1.100     anton     662: doc/gforth.ps: doc/gforth.dvi
                    663:                $(DVI2PS) doc/gforth.dvi -o $@
1.40      anton     664: 
1.100     anton     665: info:          doc/gforth.info
1.66      anton     666: 
1.111     anton     667: doc/gforth.info doc/gforth.info-*: $(GFORTH_TEXI)
1.100     anton     668:                -cd doc; $(MAKEINFO) gforth.texi
1.15      anton     669: 
1.111     anton     670: html:          $(GFORTH_TEXI)
1.115     pazsan    671:                -$(RMTREE) html
1.15      anton     672:                -mkdir html
1.164     crook     673: ### need makeinfo 4.0 to generate html. Otherwise, use texi2html..
1.170   ! anton     674:                cd html; $(MAKEINFO) --html -I ../doc ../doc/gforth.texi
        !           675: ###            cd html; $(TEXI2HTML) -menu -split_node ../doc/gforth.texi
1.114     anton     676: 
                    677: doc/gforth.txt:        $(GFORTH_TEXI)
                    678:                -cd doc; $(MAKEINFO) --no-headers --no-split gforth.texi >gforth.txt
1.63      pazsan    679: 
1.164     crook     680: doc:           info doc/gforth.ps html doc/gforth.txt TAGS
1.1       pazsan    681: 
1.9       anton     682: # For an explanation of the following Makefile rules, see node
                    683: # `Automatic Remaking' in GNU Autoconf documentation.
1.159     anton     684: 
                    685: #Note: no target "$(srcdir)/configure", because that does not trigger 
                    686: #unless $(srcdir)!="."
                    687: configure:     configure.in aclocal.m4
1.69      pazsan    688:                cd $(srcdir) && autoconf
1.111     anton     689: 
                    690: aclocal.m4:    acinclude.m4 configure.in
                    691:                aclocal
1.69      pazsan    692: 
1.51      anton     693: # autoheader might not change config.h.in, so touch a stamp file.
1.125     anton     694: engine/config.h.in:    stamp-h.in
1.100     anton     695: stamp-h.in:    configure.in  acconfig.h
1.69      pazsan    696:                cd $(srcdir) && autoheader
                    697:                echo timestamp > $(srcdir)/stamp-h.in
1.51      anton     698: 
1.100     anton     699: engine/config.h:       stamp-h
1.125     anton     700: stamp-h:       engine/config.h.in config.status
1.100     anton     701:                CONFIG_FILES=$@ CONFIG_HEADERS=engine/config.h ./config.status
1.119     anton     702:                echo timestamp > stamp-h
1.112     anton     703: 
1.135     anton     704: Makefile Makedist engine/Makefile gforthmi:    Makefile.in Makedist.in engine/Makefile.in gforthmi.in config.status
1.131     anton     705:                CONFIG_FILES="$@" CONFIG_HEADERS=engine/config.h ./config.status
1.112     anton     706: 
1.69      pazsan    707: config.status: configure
1.51      anton     708:                ./config.status --recheck
1.30      pazsan    709: 
1.51      anton     710: 
                    711: #create files for DOS, because DOS cannot do it itself
1.106     jwilke    712: makefile.dos: mkdosmf.sed Makefile.in engine/Makefile.in
1.30      pazsan    713:        sed -f mkdosmf.sed <Makefile.in >makefile.dos
1.100     anton     714:        sed -f mkdosmf.sed <engine/Makefile.in >engine/makefile.dos
1.69      pazsan    715: 
1.106     jwilke    716: makefile.os2: mkos2mf.sed Makefile.in engine/Makefile.in
1.69      pazsan    717:        sed -f mkos2mf.sed <Makefile.in >makefile.os2
1.100     anton     718:        sed -f mkos2mf.sed <engine/Makefile.in >engine/makefile.os2
1.69      pazsan    719:        echo '%.o:      %.c' >>makefile.os2
                    720:        echo '          $$(GCC) $$(CFLAGS) -c $$<' >>makefile.os2
1.100     anton     721:        echo '%.o:      %.c' >>engine/makefile.os2
                    722:        echo '          $$(GCC) $$(CFLAGS) -c $$<' >>engine/makefile.os2

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>