Annotation of gforth/Makefile.in, revision 1.101

1.38      anton       1: #Makefile for Gforth
                      2: 
1.91      anton       3: #Copyright (C) 1995-1997 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.77      anton      26: #gforth version
                     27: VERSION_MAJOR=0
1.88      pazsan     28: VERSION_MINOR=3
1.98      anton      29: VERSION_RELEASE=1
1.77      anton      30: VERSION        =$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_RELEASE)
                     31: DOSVERSION=$(VERSION_MAJOR)$(VERSION_MINOR)$(VERSION_RELEASE)
1.9       anton      32: SHELL  = /bin/sh
1.4       pazsan     33: RM     = rm
1.74      pazsan     34: RMTREE = rm -rf
1.4       pazsan     35: CP     = cp
1.74      pazsan     36: TAR    = tar cf -
1.9       anton      37: INSTALL        = @INSTALL@
                     38: INSTALL_PROGRAM = @INSTALL_PROGRAM@
                     39: INSTALL_DATA = @INSTALL_DATA@
                     40: LN_S   = @LN_S@
1.48      pazsan     41: GCC    = @CC@
1.23      anton      42: CC     = $(GCC)
1.68      anton      43: PATHSEP = @PATHSEP@
1.67      anton      44: FORTHPATH = $(libdir)/gforth/site-forth$(PATHSEP)$(datadir)/gforth/site-forth$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)$(PATHSEP).
1.72      anton      45: FORTHSIZES = @FORTHSIZES@
1.67      anton      46: FORTH  = ./gforth -p $(FORTHPATH)$(PATHSEP)$(srcdir)
1.87      anton      47: FORTHKFLAGS= -p .$(PATHSEP)$(srcdir) -i ./kernel.fi
                     48: FORTHK = ./gforth $(FORTHKFLAGS)
1.66      anton      49: FORTHP = ./gforth -i ./kernel.fi
1.22      anton      50: STRIP  = strip
1.32      anton      51: TEXI2DVI = texi2dvi
1.38      anton      52: DVI2PS = dvips -D300
1.99      anton      53: #you can get texi2html from http://wwwcn.cern.ch/dci/texi2html/
1.15      anton      54: TEXI2HTML = texi2html
1.11      anton      55: MAKEINFO = makeinfo
1.9       anton      56: XCFLAGS        = @CFLAGS@
                     57: XDEFINES = @DEFS@
1.12      anton      58: SWITCHES = $(XCFLAGS) $(XDEFINES) #-DNDEBUG #turn off assertions
1.48      pazsan     59: ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves
1.30      pazsan     60: DEBUGFLAG = @DEBUGFLAG@
1.100     anton      61: CFLAGS = $(DEBUGFLAG) -I$(srcdir)/engine -I$(srcdir) -O4 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(FORTHPATH)\"
1.1       pazsan     62: 
                     63: #John Wavrik should use -Xlinker -N to get a writable text (executable)
1.30      pazsan     64: XLDFLAGS = @LDFLAGS@
                     65: GCCLDFLAGS = @GCCLDFLAGS@
                     66: LDFLAGS        =  $(DEBUGFLAG) $(XLDFLAGS) $(GCCLDFLAGS)
1.9       anton      67: LDLIBS = @LIBS@
                     68: 
1.52      anton      69: VPATH = @srcdir@
1.9       anton      70: prefix = @prefix@
                     71: exec_prefix = @exec_prefix@
                     72: srcdir = @srcdir@
                     73: bindir = $(exec_prefix)/bin
                     74: #read-only architecture-independent files
                     75: datadir = $(prefix)/share
                     76: #read-only architecture-dependent non-ascii files
                     77: libdir = $(prefix)/lib
                     78: infodir = $(prefix)/info
1.52      anton      79: mandir = $(prefix)/man
                     80: man1dir= $(mandir)/man1
                     81: man1ext= .1
                     82: #older emacses have their site-lisp in $(libdir)/emacs/
                     83: emacssitelispdir=$(datadir)/emacs/site-lisp
1.1       pazsan     84: 
1.100     anton      85: INCLUDES = engine/CVS engine/forth.h engine/threaded.h engine/io.h
1.1       pazsan     86: 
1.52      anton      87: KERN_SRC = \
1.100     anton      88:        kernel/CVS \
                     89:        kernel/aliases0.fs \
                     90:        kernel/aliases.fs \
                     91:        kernel/args.fs \
                     92:        kernel/cond.fs \
                     93:        kernel/cond-old.fs \
1.52      anton      94:        cross.fs \
1.100     anton      95:        kernel/errore.fs \
                     96:        kernel/files.fs \
                     97:        kernel/require.fs \
                     98:        kernel/paths.fs \
                     99:        kernel/kernel.fs \
                    100:        kernel/main.fs \
                    101:        kernel/prim0.fs \
                    102:        search.fs \
                    103:        kernel/special.fs \
                    104:        kernel/tools.fs \
                    105:        kernel/toolsext.fs \
                    106:        kernel/vars.fs \
                    107:        kernel/accept.fs \
                    108:        kernel/basics.fs \
                    109:        kernel/interp.fs \
                    110:        kernel/io.fs \
                    111:        kernel/license.fs \
                    112:        kernel/nio.fs \
                    113:        kernel/saccept.fs
1.52      anton     114: 
                    115: GFORTH_FI_SRC = \
                    116:        assert.fs \
1.100     anton     117:        blocked.fb \
1.52      anton     118:        blocks.fs \
                    119:        bufio.fs \
                    120:        debug.fs \
1.100     anton     121:        debugs.fs \
                    122:        savesys.fs \
1.52      anton     123:        environ.fs \
1.82      pazsan    124:        errors.fs \
                    125:        extend.fs \
1.52      anton     126:        float.fs \
                    127:        glocals.fs \
                    128:        hash.fs \
                    129:        history.fs \
1.64      anton     130:        intcomp.fs \
1.101   ! pazsan    131:        locals.fs \
1.52      anton     132:        look.fs \
1.100     anton     133:        search.fs \
1.52      anton     134:        see.fs \
1.85      pazsan    135:        see-ext.fs \
1.52      anton     136:        source.fs \
                    137:        startup.fs \
                    138:        struct.fs \
                    139:        stuff.fs \
1.60      pazsan    140:        tasker.fs \
1.52      anton     141:        termsize.fs \
                    142:        vt100.fs \
                    143:        vt100key.fs \
1.101   ! pazsan    144:        wordinfo.fs \
        !           145:        lib.fs \
        !           146:        sieve.fs \
        !           147:        add.fs
1.52      anton     148: 
                    149: FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_SRC) \
1.75      anton     150:        ans-report.fs ansi.fs answords.fs \
1.100     anton     151:        code.fs colorize.fs comp-i.fs \
1.52      anton     152:        doskey.fs ds2texi.fs \
                    153:        etags.fs filedump.fs \
                    154:        glosgen.fs gray.fs \
1.100     anton     155:        doc/makedoc.fs \
1.49      anton     156:        mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
1.52      anton     157:        more.fs other.fs prims2x.fs random.fs \
1.100     anton     158:        siteinit.fs \
1.52      anton     159:        tt.fs sokoban.fs \
                    160:        wordsets.fs \
1.100     anton     161:        test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs \
                    162:        test/other.fs test/checkans.fs test/CVS \
1.65      pazsan    163:        bubble.fs siev.fs matrix.fs fib.fs \
1.75      anton     164:        oof.fs oofsampl.fs objects.fs
1.1       pazsan    165: 
1.100     anton     166: COMPAT = compat/CVS compat/README compat/control.fs compat/anslocal.fs \
                    167:        compat/struct.fs compat/loops.fs
                    168: 
                    169: ALLSUBDIRS = engine
                    170: 
1.101   ! pazsan    171: ARCHS =        arch/m68k/machine.h \
        !           172:        arch/mips/machine.h \
        !           173:        arch/386/machine.h \
        !           174:        arch/hppa/machine.h \
        !           175:        arch/sparc/machine.h \
        !           176:        arch/power/machine.h \
        !           177:        arch/alpha/machine.h \
        !           178:        arch/4stack/README \
        !           179:        arch/4stack/asm.fs \
        !           180:        arch/4stack/mach.fs \
        !           181:        arch/4stack/prim.fs \
        !           182:        arch/4stack/mach.sh \
        !           183:        arch/4stack/relocate.fs \
        !           184:        arch/misc/README \
        !           185:        arch/misc/asm.fs \
        !           186:        arch/misc/mach.fs \
        !           187:        arch/misc/prim.fs \
        !           188:        arch/misc/sim.fs \
        !           189:        arch/misc/sokoban.fs \
        !           190:        arch/misc/tt.fs
        !           191: 
1.100     anton     192: SOURCES        = CVS compat Makefile.in engine/Makefile.in gforthmi \
1.91      anton     193:        configure.in configure config.sub config.guess \
1.100     anton     194:        acconfig.h engine/config.h.in stamp-h.in \
1.101   ! pazsan    195:        install-sh INSTALL INSTALL.BINDIST NEWS README ToDo BUGS model \
        !           196:        COPYING Benchres aclocal.m4 \
1.100     anton     197:        doc/gforth.ds doc/texinfo.tex doc/gforth.1 gforth.el \
                    198:        prim engine/engine.c engine/main.c engine/io.c engine/memcmpc.c \
1.101   ! pazsan    199:        $(ARCHS) \
1.100     anton     200:        engine/cache.c engine/32bit.h \
                    201:        engine/getopt.c engine/getopt1.c engine/getopt.h engine/select.c \
                    202:        engine/ecvt.c engine/memcmp.c engine/strtol.c engine/strtoul.c \
                    203:        engine/ansidecl.h engine/memmove.c \
1.101   ! pazsan    204:        engine/pow10.c engine/atanh.c engine/cleanalign.c \
1.100     anton     205:        engine/strerror.c engine/strsignal.c engine/strsig.c engine/dblsub.c \
                    206:        INSTALL.DOS makefile.dos engine/makefile.dos mkdosmf.sed config.bat \
                    207:        dosconf.h gforthmi.bat startup.dos history.dos mkinstalldirs \
                    208:        configure.cmd mkos2mf.sed os2conf.h makefile.os2 engine/makefile.os2 \
                    209:        gforthmi.cmd glosgen.glo doc/glossaries.doc \
1.101   ! pazsan    210:        $(INCLUDES) $(FORTH_SRC) $(COMPAT) \
        !           211:        testclean testdist testdist1 timings.sc
1.1       pazsan    212: 
1.5       anton     213: RCS_FILES =  ToDo model high-level
1.1       pazsan    214: 
1.100     anton     215: GEN = gforth gforth-ditc kernel/version.fs version-stamp
1.1       pazsan    216: 
1.100     anton     217: OBJECTS0 = engine/replace.a
                    218: OBJECTS        = engine/engine.o engine/main.o
                    219: OBJECTS_DITC =  engine/engine-ditc.o engine/main-ditc.o
1.1       pazsan    220: 
                    221: # things that need a working forth system to be generated
1.100     anton     222: FORTH_GEN0 = prim.b engine/prim.i engine/prim_lab.i kernel/aliases.fs kernel/prim.fs
1.65      pazsan    223: FORTH_GEN =  $(FORTH_GEN0) @KERNEL@ gforth.fi
1.1       pazsan    224: # this is used for antidependences,
1.65      pazsan    225: FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@ 
1.5       anton     226: 
1.38      anton     227: #distributed documentation
1.100     anton     228: DOCDIST = doc/gforth.info doc/gforth.info-* doc/gforth.ps
1.5       anton     229: 
1.72      anton     230: #stuff in a binonly distribution 
1.87      anton     231: BINONLYDIST = config.status Makefile gforth gforth-ditc \
                    232:        $(OBJECTS0) $(OBJECTS) $(OBJECTS_DITC)\
1.100     anton     233:        machine/machine.h engine/config.h kernel.fi \
                    234:        stamp-h engine/version.h kernel/version.fs version-stamp \
1.72      anton     235:        INSTALL.BINDIST
                    236: 
1.48      pazsan    237: KERNLS = kernl16b.fi- kernl16l.fi- \
                    238:         kernl32b.fi- kernl32l.fi- \
                    239:         kernl64b.fi- kernl64l.fi-
1.30      pazsan    240: 
1.100     anton     241: GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) doc/gforth.texi doc/gforth.dvi doc/gforth.ps Makefile configure
1.1       pazsan    242: 
1.9       anton     243: #standards.info recommends this:
                    244: .SUFFIXES:
                    245: .SUFFIXES: .c .o
                    246: 
1.100     anton     247: all:   kernel/version.fs more
1.1       pazsan    248: 
1.78      anton     249: #this rule avoids remaking everything after minor changes in Makefile.in
1.100     anton     250: version:       Makefile.in
1.94      anton     251:                if test -r $@ && test x'$(VERSION)' = x`cat $@` ; then true ; else echo $(VERSION) > $@ ; fi
1.78      anton     252: 
1.100     anton     253: engine/version.h:      version
1.71      anton     254:                echo "static char gforth_version[]=\"$(VERSION)\" ;" >$@
1.48      pazsan    255: 
1.100     anton     256: kernel/version.fs:     version
1.48      pazsan    257:                $(MAKE) gforth
                    258:                echo ": version-string s\" $(VERSION)\" ;" >$@
1.2       pazsan    259: 
1.83      pazsan    260: more:  $(OBJECTS) $(FORTH_GEN) gforth
1.2       pazsan    261: 
1.1       pazsan    262: #from the gcc Makefile: 
                    263: #"Deletion of files made during compilation.
                    264: # There are four levels of this:
                    265: #   `mostlyclean', `clean', `distclean' and `realclean'.
                    266: # `mostlyclean' is useful while working on a particular type of machine.
                    267: # It deletes most, but not all, of the files made by compilation.
                    268: # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
                    269: # `clean' deletes everything made by running `make all'.
                    270: # `distclean' also deletes the files made by config.
                    271: # `realclean' also deletes everything that could be regenerated automatically."
                    272: 
1.45      anton     273: mostlyclean:
1.100     anton     274:                -$(RM) -rf *.s gforth.fi *.fi~ *.fi- kernel/version.fs *TAGS \
                    275:                doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
                    276:                doc/gforth.aux doc/gforth.cp doc/gforth.cps \
                    277:                doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
                    278:                doc/gforth.pg \
                    279:                doc/gforth.toc doc/gforth.tp doc/gforth.vr html \
                    280:                gforth-$(VERSION).tar.gz \
                    281:                engine/version.h
1.45      anton     282: 
                    283: clean:         mostlyclean
1.100     anton     284:                -$(RM) -rf $(GEN) *.o engine/*.o engine/*.a
1.1       pazsan    285: 
                    286: distclean:     clean
1.100     anton     287:                -$(RM) machine/machine.h kernel.fi config.cache config.log \
                    288:                config.status engine/config.h Makefile stamp-h
1.1       pazsan    289: 
1.53      anton     290: #realclean is useless, but dangerous, so it's commented out
                    291: #realclean:    distclean
                    292: #              -$(RM) $(GEN_PRECIOUS)
1.1       pazsan    293: 
1.45      anton     294: #mostlyclean, but also remove some of the stuff that is distributed
                    295: virtualclean:  mostlyclean
                    296:                -$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \
1.59      anton     297:                gforth-$(VERSION).tar.gz config.cache *~ */*~
1.45      anton     298: 
1.66      anton     299: #use dist targets only when srcdir=.
1.69      pazsan    300: dist:          $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST)
1.74      pazsan    301:                -$(RMTREE) gforth-$(VERSION)
1.21      anton     302:                mkdir gforth-$(VERSION)
1.100     anton     303:                $(TAR) $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) | \
                    304:                        (cd gforth-$(VERSION); tar xf -)
1.74      pazsan    305:                $(TAR) gforth-$(VERSION)|gzip -9 >gforth-$(VERSION).tar.gz
                    306:                -$(RMTREE) gforth-$(VERSION)
                    307: 
                    308: #use dist targets only when srcdir=.
                    309: dosdist:       $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST)
                    310:                -$(RMTREE) gforth.$(DOSVERSION)
                    311:                mkdir gforth.$(DOSVERSION)
1.100     anton     312:                $(TAR) $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) | \
                    313:                        (cd gforth.$(DOSVERSION); tar xf -)
                    314:                zip -r9 gf$(DOSVERSION)dos.zip gforth.$(DOSVERSION)/*
1.74      pazsan    315:                -$(RMTREE) gforth.$(DOSVERSION)
1.1       pazsan    316: 
1.69      pazsan    317: #A source distribution contains only the things needed to install gforth,
                    318: #without the documents.
                    319: srcdist:       $(SOURCES) $(FORTH_GEN0) @KERNEL@
1.74      pazsan    320:                -$(RMTREE) gforth-$(VERSION)
1.69      pazsan    321:                mkdir gforth-$(VERSION)
1.100     anton     322:                $(TAR) $(SOURCES) $(FORTH_GEN0) @KERNEL@ | \
                    323:                        (cd gforth-$(VERSION); tar xf -)
1.74      pazsan    324:                $(TAR) gforth-$(VERSION)|gzip -9 >gforth-src-$(VERSION).tar.gz
                    325:                -$(RMTREE) gforth-$(VERSION)
1.69      pazsan    326: 
1.100     anton     327: srconlydist:   $(SOURCES)
                    328:                -$(RMTREE) gforth-$(VERSION)
                    329:                mkdir gforth-$(VERSION)
                    330:                $(TAR) $(SOURCES) | \
                    331:                        (cd gforth-$(VERSION); tar xf -)
                    332:                $(TAR) gforth-$(VERSION)|gzip -9 >gforth-srconly-$(VERSION).tar.gz
                    333:                -$(RMTREE) gforth-$(VERSION)
                    334: 
1.69      pazsan    335: #A document distribution contains only the documents, which can be created
                    336: #with MAKE.
                    337: docdist:       $(DOCDIST)
1.74      pazsan    338:                -$(RMTREE) gforth-$(VERSION)
1.69      pazsan    339:                mkdir gforth-$(VERSION)
1.100     anton     340:                $(TAR) $(DOCDIST) | (cd gforth-$(VERSION); tar xf -)
1.74      pazsan    341:                $(TAR) gforth-$(VERSION)|gzip -9 >gforth-doc-$(VERSION).tar.gz
                    342:                -$(RMTREE) gforth-$(VERSION)
1.69      pazsan    343: 
1.22      anton     344: #a binary distribution contains the complete source distribution,
                    345: # the objects, the executable and the links. the objects are there for making
                    346: # make happy.
1.72      anton     347: bindist:       $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST)
1.74      pazsan    348:                -$(RMTREE) gforth-$(VERSION)
1.22      anton     349:                mkdir gforth-$(VERSION)
1.100     anton     350:                $(TAR) $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST) | (cd gforth-$(VERSION); tar xf -)
1.22      anton     351:                strip gforth-$(VERSION)/gforth
1.74      pazsan    352:                $(TAR) gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-@host@.tar.gz
1.22      anton     353: 
                    354: #makes a package with only the stuff not present in the source
                    355: #package. For installation the source package is still needed!
                    356: #This is useful if you want to distribute many binary versions in
                    357: #little space (e.g., on floppy disk): Put the source package and
                    358: #all the binonly packages you are interested in on the disk. The user
                    359: #then just has to unpack the source and his favourite binonly into the
                    360: #same directory and has a full binary distribution.
1.72      anton     361: binonlydist:   $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST)
1.74      pazsan    362:                -$(RMTREE) gforth-$(VERSION)
1.22      anton     363:                mkdir gforth-$(VERSION)
1.100     anton     364:                $(TAR) $(BINONLYDIST) | (cd gforth-$(VERSION); tar xf -)
1.22      anton     365:                strip gforth-$(VERSION)/gforth
1.74      pazsan    366:                $(TAR) gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-binonly-@host@.tar.gz
1.22      anton     367: 
                    368: 
1.15      anton     369: #strip gforth, because the debugging stuff is hardly useful once
                    370: # gforth manages to execute more than a few primitives
                    371: 
1.68      anton     372: #install does not depend on gforth.info, because that would require
                    373: #supplying a lot of files that can be easily generated (only info is
                    374: #hard to generate)
1.100     anton     375: install:       gforth $(FORTH_SRC) kernel.fi gforth.fi doc/gforth.1 prim gforth.TAGS installdirs
                    376:                touch $(datadir)/gforth/site-forth/siteinit.fs
1.49      anton     377:                -$(RM) $(bindir)/gforth $(bindir)/gforth-$(VERSION)
1.15      anton     378:                $(INSTALL_PROGRAM) -s gforth $(bindir)
1.49      anton     379:                ln $(bindir)/gforth $(bindir)/gforth-$(VERSION)
1.100     anton     380:                -$(INSTALL_DATA) $(srcdir)/doc/gforth.1 $(man1dir)
1.83      pazsan    381:                -for i in $(srcdir)/gforth.info*; do $(INSTALL_DATA) $$i $(infodir); done
1.100     anton     382:                for i in $(FORTH_SRC) prim; do \
1.66      anton     383:                        $(INSTALL_DATA) $(srcdir)/$$i $(datadir)/gforth/$(VERSION); \
1.9       anton     384:                done
1.65      pazsan    385:                $(INSTALL_DATA) kernel.fi $(libdir)/gforth/$(VERSION)
1.77      anton     386:                $(RM) gforth.fi; $(MAKE) gforth.fi #gforth.fi contains some path names
1.83      pazsan    387:                $(INSTALL_DATA) gforth.fi $(libdir)/gforth/$(VERSION)
1.94      anton     388:                sed 's:^$(srcdir)/:$(datadir)/gforth/$(VERSION)/:' gforth.TAGS >TAGS; $(INSTALL_DATA) TAGS $(datadir)/gforth/$(VERSION)
1.52      anton     389:                if test -d $(emacssitelispdir); then \
1.66      anton     390:                        $(INSTALL_DATA) $(srcdir)/gforth.el $(emacssitelispdir); \
1.55      pazsan    391:                else \
1.66      anton     392:                        echo ">>>>>Please install $(srcdir)/gforth.el in your .../emacs/site-lisp directory"; \
1.52      anton     393:                fi
1.68      anton     394:                echo ">>>>> Please make an entry for Gforth in your info dir file; e.g.:"; \
1.72      anton     395:                echo "* Gforth: (gforth).       A fast interpreter for the Forth language."
1.40      anton     396: 
1.66      anton     397: install-strip: install
                    398: 
1.78      anton     399: installdirs:   mkinstalldirs
                    400:                $(srcdir)/mkinstalldirs $(bindir) $(man1dir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(datadir)/gforth/site-forth
                    401: 
1.40      anton     402: #deinstall all files specific to this version of gforth
                    403: #to uninstall version foo, type `make uninstall VERSION=foo'
                    404: uninstall:     
                    405:                -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)
1.81      anton     406:                @echo -e "Type\n$(RM) -rf $(bindir)/gforth $(man1dir)/gforth.1 $(infodir)/gforth.info* $(datadir)/gforth $(libdir)/gforth\nto remove Gforth completely"
1.40      anton     407: 
1.67      anton     408: check test:    gforth gforth.fi
1.100     anton     409:                $(FORTH) test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs -e bye
                    410:                $(FORTH) test/other.fs -e bye
                    411:                $(FORTH) code.fs test/checkans.fs -e bye
1.21      anton     412:                @echo 'Expect no differences'
1.100     anton     413:                $(FORTH) -m 100000 prims2x.fs -e "s\" $(srcdir)/prim.b\"' output-c process-file bye"| diff -c - $(srcdir)/engine/prim.i
1.21      anton     414: 
1.46      anton     415: bench:         gforth gforth.fi
1.40      anton     416:                @echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
                    417:                time $(FORTH) siev.fs -e "main bye"
                    418:                time $(FORTH) bubble.fs -e "main bye"
1.41      anton     419:                time $(FORTH) -m 160000 matrix.fs -e "main bye"
1.40      anton     420:                time $(FORTH) fib.fs -e "main bye"
                    421: 
1.9       anton     422: dvi:           gforth.dvi
1.5       anton     423: 
1.87      anton     424: gforth:                $(OBJECTS) $(OBJECTS0)
1.4       pazsan    425:                -$(CP) gforth gforth~
1.87      anton     426:                $(GCC) $(LDFLAGS) $(OBJECTS) $(OBJECTS0) $(LDLIBS) -o $@
1.95      pazsan    427:                @GFORTH_EXE@
1.87      anton     428: 
                    429: gforth-ditc:   $(OBJECTS_DITC) $(OBJECTS0)
                    430:                $(GCC) $(LDFLAGS) $(OBJECTS_DITC) $(OBJECTS0) $(LDLIBS) -o $@
1.95      pazsan    431:                @GFORTHDITC_EXE@
1.1       pazsan    432: 
1.100     anton     433: kernl16l.fi-:  $(KERN_SRC) kernel/version.fs mach16l.fs $(FORTH_GEN0)
                    434:                $(FORTHK) -e 's" mach16l.fs"' kernel/main.fs -e "save-cross kernl16l.fi- $(bindir)/gforth-$(VERSION) bye"
1.87      anton     435: 
1.100     anton     436: kernl16b.fi-:  $(KERN_SRC) kernel/version.fs mach16b.fs $(FORTH_GEN0)
                    437:                $(FORTHK) -e 's" mach16b.fs"' kernel/main.fs -e "save-cross kernl16b.fi- $(bindir)/gforth-$(VERSION) bye"
1.87      anton     438: 
1.100     anton     439: kernl32l.fi-:  $(KERN_SRC) kernel/version.fs mach32l.fs $(FORTH_GEN0)
                    440:                $(FORTHK) -e 's" mach32l.fs"' kernel/main.fs -e "save-cross kernl32l.fi- $(bindir)/gforth-$(VERSION) bye"
1.87      anton     441: 
1.100     anton     442: kernl32b.fi-:  $(KERN_SRC) kernel/version.fs mach32b.fs $(FORTH_GEN0)
                    443:                $(FORTHK) -e 's" mach32b.fs"' kernel/main.fs -e "save-cross kernl32b.fi- $(bindir)/gforth-$(VERSION) bye"
                    444: 
                    445: kernl64l.fi-:  $(KERN_SRC) kernel/version.fs mach64l.fs $(FORTH_GEN0)
                    446:                $(FORTHK) -e 's" mach64l.fs"' kernel/main.fs -e "save-cross kernl64l.fi- $(bindir)/gforth-$(VERSION) bye"
                    447: 
                    448: kernl64b.fi-:  $(KERN_SRC) kernel/version.fs mach64b.fs $(FORTH_GEN0)
                    449:                $(FORTHK) -e 's" mach64b.fs"' kernel/main.fs -e "save-cross kernl64b.fi- $(bindir)/gforth-$(VERSION) bye"
                    450: 
                    451: kernl-%.fi:    arch/%/mach.fs $(KERN_SRC) kernel/version.fs $(FORTH_GEN0) \
                    452:                arch/%/prim.fs arch/%/asm.fs
                    453:                $(FORTHK) -e 's" $<"' kernel/main.fs -e "save-cross $@- $(bindir)/gforth-$(VERSION) bye"
                    454:                if [ -f `echo $< | sed s/fs/sh/` ]; \
                    455:                then sh `echo $< | sed s/fs/sh/` $@; \
                    456:                else $(CP) $@- $@; \
                    457:                fi
1.30      pazsan    458: 
1.87      anton     459: kernl16b.fi:   $(KERNLS)
1.97      anton     460:                -$(CP) kernl16b.fi kernl16b.fi~
                    461:                -$(CP) kernl16b.fi- kernl16b.fi
1.87      anton     462: 
                    463: kernl16l.fi:   $(KERNLS)
1.97      anton     464:                -$(CP) kernl16l.fi kernl16l.fi~
                    465:                -$(CP) kernl16l.fi- kernl16l.fi
1.87      anton     466: 
1.96      anton     467: kernl32b.fi:   $(KERNLS)
1.97      anton     468:                -$(CP) kernl32b.fi kernl32b.fi~
                    469:                -$(CP) kernl32b.fi- kernl32b.fi
1.87      anton     470: 
                    471: kernl32l.fi:   $(KERNLS)
                    472:                -$(CP) kernl32l.fi kernl32l.fi~
                    473:                -$(CP) kernl32l.fi- kernl32l.fi
                    474: 
                    475: kernl64b.fi:   $(KERNLS)
                    476:                -$(CP) kernl64b.fi kernl64b.fi~
                    477:                -$(CP) kernl64b.fi- kernl64b.fi
                    478: 
                    479: kernl64l.fi:   $(KERNLS)
                    480:                -$(CP) kernl64l.fi kernl64l.fi~
                    481:                -$(CP) kernl64l.fi- kernl64l.fi
1.89      anton     482: 
1.100     anton     483: #kernl%.fi:    kernl%.fi- $(KERNLS)
                    484: #              -$(CP) $@ $@~
                    485: #              -$(CP) $< $@
1.87      anton     486: 
1.100     anton     487: gforth.fi:     @kernel_fi@ gforthmi gforth gforth-ditc $(GFORTH_FI_SRC)
                    488:                GFORTHD="./gforth-ditc -p .$(PATHSEP)$(srcdir)" GFORTH="./gforth-ditc -p .$(PATHSEP)$(srcdir) -i kernel.fi startup.fs" $(srcdir)/gforthmi gforth.fi $(FORTHSIZES) $(FORTHKFLAGS) startup.fs
1.50      anton     489: 
1.67      anton     490: #TAGS is a GNU standard target
                    491: TAGS:          gforth.TAGS
                    492:                $(CP) gforth.TAGS $@
                    493: 
1.100     anton     494: gforth.TAGS:   @kernel_fi@ gforth $(GFORTH_FI_SRC) prim.TAGS
1.66      anton     495:                $(FORTHK) etags.fs startup.fs -e bye
1.100     anton     496:                cat TAGS prim.TAGS kernel.TAGS >gforth.TAGS
1.67      anton     497:                rm TAGS
1.34      anton     498: 
1.100     anton     499: engine/replace.a:
                    500:                cd engine; $(MAKE) replace.a
1.1       pazsan    501: 
1.100     anton     502: engine.s:      engine/engine.c engine/prim.i engine/prim_lab.i machine/machine.h engine/threaded.h $(INCLUDES) engine/config.h
                    503:                $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -S $(srcdir)/engine/engine.c
1.36      pazsan    504: 
1.100     anton     505: engine/engine.o:       engine/engine.c engine/prim.i engine/prim_lab.i machine/machine.h engine/threaded.h $(INCLUDES) engine/config.h
                    506:                $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c $(srcdir)/engine/engine.c -o $@
1.87      anton     507: 
1.100     anton     508: engine/engine-ditc.o:  engine/engine.c engine/prim.i engine/prim_lab.i machine/machine.h engine/threaded.h $(INCLUDES) engine/config.h
                    509:                $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -DDOUBLY_INDIRECT -o $@ -c $(srcdir)/engine/engine.c
1.87      anton     510: 
1.100     anton     511: engine/main.o:         engine/main.c machine/machine.h engine/threaded.h $(INCLUDES) engine/config.h engine/version.h
                    512:                $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -o $@ -c $(srcdir)/engine/main.c
1.9       anton     513: 
1.100     anton     514: engine/main-ditc.o:    engine/main.c machine/machine.h engine/threaded.h $(INCLUDES) engine/config.h engine/version.h
                    515:                $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -DDOUBLY_INDIRECT -o $@ -c $(srcdir)/engine/main.c
1.1       pazsan    516: 
1.100     anton     517: engine/strtoul.o:      strtoul.c strtol.c
1.1       pazsan    518: 
1.100     anton     519: prim.b:                prim
                    520:                m4 -s $(srcdir)/prim >$@ 
                    521: 
                    522: engine/prim.i:         prim.b prims2x.fs
                    523:                $(FORTHK) prims2x.fs -e "s\" prim.b\" ' output-c process-file bye" >$@-
1.93      pazsan    524:                $(CP) $@- $@
                    525:                $(RM) $@-
1.1       pazsan    526: 
1.100     anton     527: engine/prim_lab.i:     prim.b prims2x.fs
                    528:                $(FORTHK) prims2x.fs -e "s\" prim.b\" ' output-label process-file bye" >$@-
1.93      pazsan    529:                $(CP) $@- $@
                    530:                $(RM) $@-
1.1       pazsan    531: 
1.100     anton     532: kernel/aliases.fs:     prim.b prims2x.fs kernel/aliases0.fs
                    533:                $(CP) kernel/aliases0.fs $@-
                    534:                $(FORTHK) prims2x.fs -e "s\" prim.b\" ' output-alias process-file bye" >>$@-
1.93      pazsan    535:                $(CP) $@- $@
                    536:                $(RM) $@-
1.1       pazsan    537: 
1.100     anton     538: kernel/prim.fs:        prim.b prims2x.fs kernel/prim0.fs
                    539:                $(CP) kernel/prim0.fs kernel/prim.fs-
                    540:                $(FORTHK) prims2x.fs -e "s\" prim.b\" ' output-forth process-file bye" >>$@-
1.93      pazsan    541:                $(CP) $@- $@
                    542:                $(RM) $@-
1.27      anton     543: 
1.100     anton     544: prim.TAGS:     prim.b prims2x.fs
                    545:                $(FORTHK) prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-tag process-file bye" >$@-
1.93      pazsan    546:                $(CP) $@- $@
                    547:                $(RM) $@-
1.1       pazsan    548: 
1.100     anton     549: doc/doc.fd:    doc/makedoc.fs $(GFORTH_FI_SRC)
                    550:                $(FORTHK) -e "s\" doc/doc.fd\"" doc/makedoc.fs startup.fs code.fs -e bye
1.20      anton     551: 
1.100     anton     552: doc/crossdoc.fd:       $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
                    553:                $(FORTHK) -e 's" mach32l.fs"' kernel/main.fs -e bye
1.35      anton     554: 
1.100     anton     555: doc/gforth.texi:       doc/gforth.ds prim.b ds2texi.fs prims2x.fs \
                    556:                doc/doc.fd doc/crossdoc.fd
                    557:                $(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    558:                $(CP) $@- $@
                    559:                $(RM) $@-
1.35      anton     560: 
1.100     anton     561: checkdoc:      doc/gforth.ds prim.b ds2texi.fs prims2x.fs doc/doc.fd doc/crossdoc.fd answords.fs doc/gforth.texi
                    562:                $(FORTHK) ds2texi.fs prims2x.fs -e "s\" $(srcdir)/prim.b\" ' register-doc process-file" doc/crossdoc.fd doc/doc.fd answords.fs -e bye
                    563:                -grep unknown doc/gforth.texi
1.66      anton     564: 
1.100     anton     565: dvi:           doc/gforth.dvi
1.1       pazsan    566: 
1.100     anton     567: doc/gforth.dvi doc/gforth.fns: doc/gforth.texi
                    568:                cd doc; $(TEXI2DVI) gforth.texi
1.5       anton     569: 
1.100     anton     570: doc/gforth.ps: doc/gforth.dvi
                    571:                $(DVI2PS) doc/gforth.dvi -o $@
1.40      anton     572: 
1.100     anton     573: info:          doc/gforth.info
1.66      anton     574: 
1.100     anton     575: doc/gforth.info doc/gforth.info-*:     doc/gforth.texi
                    576:                -cd doc; $(MAKEINFO) gforth.texi
1.15      anton     577: 
1.100     anton     578: html:          doc/gforth.texi
1.15      anton     579:                -$(RM) html/*
                    580:                -mkdir html
1.100     anton     581:                cd html; $(TEXI2HTML) -menu -split_node ../doc/gforth.texi
1.63      pazsan    582: 
1.100     anton     583: doc:           doc/gforth.ps html
1.1       pazsan    584: 
1.9       anton     585: # For an explanation of the following Makefile rules, see node
                    586: # `Automatic Remaking' in GNU Autoconf documentation.
1.69      pazsan    587: $(srcdir)/configure:   configure.in 
                    588:                cd $(srcdir) && autoconf
                    589: 
1.51      anton     590: # autoheader might not change config.h.in, so touch a stamp file.
1.100     anton     591: config.h.in:   stamp-h.in
                    592: stamp-h.in:    configure.in  acconfig.h
1.69      pazsan    593:                cd $(srcdir) && autoheader
                    594:                echo timestamp > $(srcdir)/stamp-h.in
1.51      anton     595: 
1.100     anton     596: engine/config.h:       stamp-h
1.69      pazsan    597: stamp-h:       config.h.in config.status
1.100     anton     598:                CONFIG_FILES=$@ CONFIG_HEADERS=engine/config.h ./config.status
1.51      anton     599:                echo > stamp-h
1.69      pazsan    600: Makefile:      Makefile.in config.status
1.101   ! pazsan    601:                CONFIG_FILES="$@ engine/$@" CONFIG_HEADERS=engine/config.h ./config.status
1.51      anton     602:      
1.69      pazsan    603: config.status: configure
1.51      anton     604:                ./config.status --recheck
1.30      pazsan    605: 
1.51      anton     606: 
                    607: #create files for DOS, because DOS cannot do it itself
1.30      pazsan    608: makefile.dos: mkdosmf.sed Makefile.in
                    609:        sed -f mkdosmf.sed <Makefile.in >makefile.dos
1.100     anton     610:        sed -f mkdosmf.sed <engine/Makefile.in >engine/makefile.dos
1.69      pazsan    611: 
                    612: makefile.os2: mkos2mf.sed Makefile.in
                    613:        sed -f mkos2mf.sed <Makefile.in >makefile.os2
1.100     anton     614:        sed -f mkos2mf.sed <engine/Makefile.in >engine/makefile.os2
1.69      pazsan    615:        echo '%.o:      %.c' >>makefile.os2
                    616:        echo '          $$(GCC) $$(CFLAGS) -c $$<' >>makefile.os2
1.100     anton     617:        echo '%.o:      %.c' >>engine/makefile.os2
                    618:        echo '          $$(GCC) $$(CFLAGS) -c $$<' >>engine/makefile.os2
1.48      pazsan    619: 
1.100     anton     620: # history is a little bit different now! JAW
                    621: #history.dos: history.fs Makefile.in
                    622: #      sed -e "s,~/\.gforth-history,/gforth.his,g" <history.fs >history.dos
1.31      pazsan    623: 
                    624: startup.dos: startup.fs Makefile.in
                    625:        sed -e "s/\\\\ include doskey/include doskey/g" \
1.43      pazsan    626:            -e "s/include vt100key/\\\\ include vt100key/g" <startup.fs >startup.dos

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