Annotation of gforth/Makefile.in, revision 1.114

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

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