Annotation of gforth/Makefile.in, revision 1.146

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

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