Annotation of gforth/Makefile.in, revision 1.119

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

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