Annotation of gforth/Makefile.in, revision 1.129

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

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