Annotation of gforth/Makefile.in, revision 1.107

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

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