Annotation of gforth/Makefile.in, revision 1.123

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

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