Annotation of gforth/Makefile.in, revision 1.178

1.38      anton       1: #Makefile for Gforth
                      2: 
1.127     anton       3: #Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
1.38      anton       4: 
                      5: #This file is part of Gforth.
                      6: 
                      7: #Gforth is free software; you can redistribute it and/or
                      8: #modify it under the terms of the GNU General Public License
                      9: #as published by the Free Software Foundation; either version 2
                     10: #of the License, or (at your option) any later version.
                     11: 
                     12: #This program is distributed in the hope that it will be useful,
                     13: #but WITHOUT ANY WARRANTY; without even the implied warranty of
                     14: #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.#See the
                     15: #GNU General Public License for more details.
                     16: 
                     17: #You should have received a copy of the GNU General Public License
                     18: #along with this program; if not, write to the Free Software
                     19: #Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
                     20: 
1.9       anton      21: # To change the values of `make' variables: instead of editing Makefiles,
                     22: # (1) if the variable is set in `config.status', edit `config.status'
                     23: #     (which will cause the Makefiles to be regenerated when you run `make');
                     24: # (2) otherwise, pass the desired values on the `make' command line.
1.1       pazsan     25: 
1.106     jwilke     26: # Warning:
                     27: # For some stupid reason setting SHELL to bash does not work properly with
                     28: # DOS. If you want to use shell-specific things that must run with DOS make
                     29: # an external batch file and call it with bash (see versions.bsh).
                     30: 
                     31: # ------------- gforth version
                     32: 
1.110     anton      33: VERSION        = @VERSION@
1.129     pazsan     34: DOSVERSION=`echo $(VERSION)|sed 's/\.//g'`
1.106     jwilke     35: 
                     36: # -------------        System specific variables       
                     37: 
1.110     anton      38: machine=@machine@
                     39: kernel_fi=@kernel_fi@
1.123     pazsan     40: EXE=@EXE@
1.110     anton      41: 
1.106     jwilke     42: # this is the type of machine
                     43: # used to extend the include path with ./arch/$machine
1.110     anton      44: # so we can include a machine specific 
1.106     jwilke     45: # machine.h file
                     46: 
                     47: PATHSEP = @PATHSEP@
                     48: 
                     49: osclass = @OSCLASS@
                     50: 
                     51: # -------------        Utility programs
                     52: 
1.9       anton      53: SHELL  = /bin/sh
1.4       pazsan     54: RM     = rm
1.74      pazsan     55: RMTREE = rm -rf
1.144     pazsan     56: CP     = cp -p
1.129     pazsan     57: MV     = mv
1.74      pazsan     58: TAR    = tar cf -
1.9       anton      59: INSTALL        = @INSTALL@
                     60: INSTALL_PROGRAM = @INSTALL_PROGRAM@
                     61: INSTALL_DATA = @INSTALL_DATA@
                     62: LN_S   = @LN_S@
1.48      pazsan     63: GCC    = @CC@
1.23      anton      64: CC     = $(GCC)
1.155     jwilke     65: FORTHPATH = ~+$(PATHSEP)$(libdir)/gforth/site-forth$(PATHSEP)$(siteforthdir)$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)
1.72      anton      66: FORTHSIZES = @FORTHSIZES@
1.143     anton      67: FORTH_ARGS = --die-on-signal -p $(FORTHPATH)$(PATHSEP)$(srcdir)
                     68: ENGINE = ./gforth
                     69: FORTH  = $(ENGINE) $(FORTH_ARGS)
                     70: ENGINE_FAST = $(ENGINE)-fast
                     71: FORTH_FAST     = $(ENGINE_FAST) $(FORTH_ARGS)
1.140     pazsan     72: FORTHKFLAGS= --die-on-signal -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)" -i $(kernel_fi)
1.152     anton      73: FORTHK = $(ENGINE) $(FORTHKFLAGS)
                     74: FORTHP = $(ENGINE) --die-on-signal -i ./$(kernel_fi)
1.175     anton      75: STARTUP        = -e 3 exboot.fs startup.fs @asm_fs@ @disasm_fs@
1.22      anton      76: STRIP  = strip
1.169     anton      77: TEXI2DVI = texi2dvi -e
1.114     anton      78: DVI2PS = dvips -Z
1.99      anton      79: #you can get texi2html from http://wwwcn.cern.ch/dci/texi2html/
1.170     anton      80: MAKEINFO = makeinfo
1.15      anton      81: TEXI2HTML = texi2html
1.106     jwilke     82: 
                     83: # -------------        Compiler Flags
                     84: 
1.9       anton      85: XCFLAGS        = @CFLAGS@
                     86: XDEFINES = @DEFS@
1.12      anton      87: SWITCHES = $(XCFLAGS) $(XDEFINES) #-DNDEBUG #turn off assertions
1.48      pazsan     88: ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves
1.30      pazsan     89: DEBUGFLAG = @DEBUGFLAG@
1.154     pazsan     90: CFLAGS = $(DEBUGFLAG) -I$(srcdir)/engine -I$(srcdir)/arch/$(machine) -O3 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(FORTHPATH)\"
1.1       pazsan     91: 
                     92: #John Wavrik should use -Xlinker -N to get a writable text (executable)
1.30      pazsan     93: XLDFLAGS = @LDFLAGS@
1.117     anton      94: LDFLAGS        =  $(DEBUGFLAG) $(XLDFLAGS)
1.9       anton      95: LDLIBS = @LIBS@
                     96: 
1.106     jwilke     97: # ------------ Install Directorys
                     98: 
1.52      anton      99: VPATH = @srcdir@
1.9       anton     100: prefix = @prefix@
                    101: exec_prefix = @exec_prefix@
                    102: srcdir = @srcdir@
                    103: bindir = $(exec_prefix)/bin
                    104: #read-only architecture-independent files
                    105: datadir = $(prefix)/share
                    106: #read-only architecture-dependent non-ascii files
                    107: libdir = $(prefix)/lib
                    108: infodir = $(prefix)/info
1.52      anton     109: mandir = $(prefix)/man
                    110: man1dir= $(mandir)/man1
                    111: man1ext= .1
                    112: #older emacses have their site-lisp in $(libdir)/emacs/
1.110     anton     113: emacssitelispdir=@lispdir@
1.141     anton     114: siteforthdir=$(datadir)/gforth/site-forth
1.1       pazsan    115: 
1.124     pazsan    116: CVSDIRS = CVS engine/CVS kernel/CVS doc/CVS asm/CVS ec/CVS test/CVS \
                    117:        compat/CVS \
                    118:        arch/CVS arch/generic/CVS arch/m68k/CVS arch/mips/CVS \
                    119:        arch/386/CVS arch/hppa/CVS arch/sparc/CVS arch/power/CVS \
                    120:        arch/alpha/CVS arch/4stack/CVS arch/misc/CVS arch/6502/CVS \
                    121:        arch/8086/CVS arch/avr/CVS arch/c165/CVS arch/h8/CVS \
1.173     pazsan    122:        arch/shboom/CVS arch/sharc/CVS \
1.124     pazsan    123: 
1.135     anton     124: INCLUDES = engine/forth.h engine/threaded.h engine/io.h
                    125: 
1.52      anton     126: KERN_SRC = \
1.155     jwilke    127:        mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
                    128:        machpc.fs \
1.100     anton     129:        kernel/aliases0.fs \
                    130:        kernel/aliases.fs \
                    131:        kernel/args.fs \
1.118     anton     132:        chains.fs \
1.173     pazsan    133:        kernel/cbr.fs \
                    134:        kernel/cloop.fs \
1.100     anton     135:        kernel/cond.fs \
                    136:        kernel/cond-old.fs \
1.52      anton     137:        cross.fs \
1.100     anton     138:        kernel/errore.fs \
                    139:        kernel/files.fs \
                    140:        kernel/require.fs \
                    141:        kernel/paths.fs \
                    142:        kernel/kernel.fs \
                    143:        kernel/main.fs \
                    144:        kernel/prim0.fs \
                    145:        search.fs \
1.156     jwilke    146:        kernel/quotes.fs \
1.100     anton     147:        kernel/tools.fs \
                    148:        kernel/toolsext.fs \
                    149:        kernel/vars.fs \
                    150:        kernel/accept.fs \
                    151:        kernel/basics.fs \
1.107     pazsan    152:        kernel/int.fs \
                    153:        kernel/comp.fs \
1.100     anton     154:        kernel/io.fs \
                    155:        kernel/license.fs \
                    156:        kernel/nio.fs \
1.108     pazsan    157:        kernel/saccept.fs \
                    158:        kernel/doers.fs \
1.157     jwilke    159:        kernel/getdoers.fs \
                    160:        kernel/pass.fs
1.52      anton     161: 
1.107     pazsan    162: EC_SRC = \
1.118     anton     163:        asm/README \
1.107     pazsan    164:        asm/bitmask.fs \
                    165:        asm/numref.fs \
                    166:        asm/basic.fs \
                    167:        asm/generic.fs \
                    168:        asm/target.fs \
1.118     anton     169:        ec/README \
1.107     pazsan    170:        ec/mirror.fs \
                    171:        ec/shex.fs \
                    172:        ec/builttag.fs \
                    173:        ec/dotx.fs \
                    174:        ec/nesting.fs
                    175: 
1.52      anton     176: GFORTH_FI_SRC = \
                    177:        assert.fs \
1.145     pazsan    178:        backtrace.fs \
1.100     anton     179:        blocked.fb \
1.52      anton     180:        blocks.fs \
                    181:        bufio.fs \
                    182:        debug.fs \
1.100     anton     183:        debugs.fs \
1.162     anton     184:        ekey.fs \
1.100     anton     185:        savesys.fs \
1.52      anton     186:        environ.fs \
1.82      pazsan    187:        errors.fs \
1.172     anton     188:        exboot.fs \
1.163     anton     189:        exceptions.fs \
1.82      pazsan    190:        extend.fs \
1.52      anton     191:        float.fs \
                    192:        glocals.fs \
                    193:        hash.fs \
                    194:        history.fs \
1.64      anton     195:        intcomp.fs \
1.101     pazsan    196:        locals.fs \
1.52      anton     197:        look.fs \
1.100     anton     198:        search.fs \
1.52      anton     199:        see.fs \
1.85      pazsan    200:        see-ext.fs \
1.52      anton     201:        source.fs \
                    202:        startup.fs \
                    203:        struct.fs \
                    204:        stuff.fs \
1.60      pazsan    205:        tasker.fs \
1.52      anton     206:        termsize.fs \
                    207:        vt100.fs \
                    208:        vt100key.fs \
1.101     pazsan    209:        wordinfo.fs \
1.178   ! anton     210:        arch/386/asm.fs arch/386/disasm.fs \
1.175     anton     211:        arch/alpha/asm.fs arch/alpha/disasm.fs \
                    212:        arch/mips/asm.fs arch/mips/disasm.fs
1.52      anton     213: 
1.107     pazsan    214: FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_SRC) $(EC_SRC) \
1.75      anton     215:        ans-report.fs ansi.fs answords.fs \
1.100     anton     216:        code.fs colorize.fs comp-i.fs \
1.52      anton     217:        doskey.fs ds2texi.fs \
1.124     pazsan    218:        envos.fs envos.dos envos.os2 etags.fs filedump.fs fi2c.fs \
1.167     pazsan    219:        glosgen.fs gray.fs httpd.fs \
1.160     anton     220:        make-app.fs doc/makedoc.fs \
1.155     jwilke    221:        more.fs other.fs prims2x.fs random.fs \
1.167     pazsan    222:        table.fs string.fs \
1.52      anton     223:        tt.fs sokoban.fs \
1.118     anton     224:        unbuffered.fs wordsets.fs \
1.100     anton     225:        test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs \
1.124     pazsan    226:        test/other.fs test/checkans.fs \
1.65      pazsan    227:        bubble.fs siev.fs matrix.fs fib.fs \
1.151     crook     228:        oof.fs oofsampl.fs objects.fs objexamp.fs mini-oof.fs moof-exm.fs \
1.175     anton     229:        moofglos.fs \
                    230:        add.fs lib.fs sieve.fs
1.1       pazsan    231: 
1.131     anton     232: COMPAT = compat/README \
                    233:        compat/anslocal.fs \
                    234:        compat/assert.fs \
                    235:        compat/control.fs \
                    236:        compat/defer.fs \
                    237:        compat/exception.fs \
                    238:        compat/loops.fs \
                    239:        compat/required.fs \
                    240:        compat/struct.fs \
                    241:        compat/vocabulary.fs
1.100     anton     242: 
1.111     anton     243: GFORTH_TEXI =  doc/gforth.texi doc/version.texi
                    244: 
1.100     anton     245: ALLSUBDIRS = engine
                    246: 
1.135     anton     247: ARCHS =        \
                    248:        arch/generic/machine.h \
                    249:        arch/m68k/machine.h \
                    250:        arch/mips/machine.h \
                    251:        arch/386/machine.h \
                    252:        arch/hppa/machine.h \
                    253:        arch/hppa/cache.c \
                    254:        arch/sparc/machine.h \
                    255:        arch/power/machine.h \
                    256:        arch/power/_sync_cache_range.c \
                    257:        arch/alpha/machine.h \
                    258:        arch/4stack/README \
                    259:        arch/4stack/asm.fs \
                    260:        arch/4stack/mach.fs \
                    261:        arch/4stack/prim.fs \
                    262:        arch/4stack/mach.sh \
                    263:        arch/4stack/relocate.fs \
                    264:        arch/misc/README \
                    265:        arch/misc/asm.fs \
                    266:        arch/misc/mach.fs \
                    267:        arch/misc/prim.fs \
                    268:        arch/misc/sim.fs \
                    269:        arch/misc/sokoban.fs \
                    270:        arch/misc/tt.fs \
                    271:        arch/6502/asm.fs \
                    272:        arch/6502/prim.fs \
                    273:        arch/6502/mach.fs \
                    274:        arch/6502/zero.fs \
                    275:        arch/6502/softuart.fs \
                    276:        arch/6502/cold.fs \
                    277:        arch/8086/asm.fs \
                    278:        arch/8086/mach.fs \
                    279:        arch/8086/mach.sh \
                    280:        arch/8086/prim.fs \
                    281:        arch/avr/asm.fs \
                    282:        arch/c165/asm.fs \
                    283:        arch/c165/mach.fs \
                    284:        arch/c165/prim.fs \
                    285:        arch/h8/asm.fs \
                    286:        arch/shboom/asm.fs \
                    287:        arch/shboom/compiler.fs \
                    288:        arch/shboom/dis.fs \
                    289:        arch/shboom/mach.fs \
                    290:        arch/shboom/prim.fs \
                    291:        arch/shboom/dis2.fs \
                    292:        arch/shboom/sh.p \
1.173     pazsan    293:        arch/shboom/doers.fs \
                    294:        arch/sharc/mach.fs \
                    295:        arch/sharc/machine.h \
                    296:        arch/sharc/compile.sharc \
                    297:        arch/sharc/unistd.h \
                    298:        arch/sharc/systypes.h \
                    299:        arch/sharc/types.h \
                    300:        arch/sharc/g21k-3.3.4-bp1.diff
1.135     anton     301: 
                    302: SOURCES        = $(CVSDIRS) compat Makefile.in Makedist.in engine/Makefile.in gforthmi.in \
                    303:        configure.in configure config.sub config.guess elisp-comp missing \
                    304:        acconfig.h acinclude.m4 engine/config.h.in stamp-h.in \
                    305:        install-sh INSTALL INSTALL.BINDIST NEWS README ToDo BUGS model \
                    306:        COPYING AUTHORS ChangeLog Benchres aclocal.m4 \
                    307:        doc/gforth.ds doc/texinfo.tex doc/gforth.1 doc/version.texi.in \
                    308:        gforth.el \
                    309:        prim engine/engine.c engine/main.c engine/io.c engine/memcmpc.c \
1.149     anton     310:        engine/signals.c $(ARCHS) \
1.135     anton     311:        engine/getopt.c engine/getopt1.c engine/getopt.h engine/select.c \
                    312:        engine/ecvt.c engine/memcmp.c engine/strtol.c engine/strtoul.c \
                    313:        engine/ansidecl.h engine/memmove.c \
                    314:        engine/pow10.c engine/atanh.c engine/cleanalign.c \
                    315:        engine/strerror.c engine/strsignal.c engine/dblsub.c \
1.177     anton     316:        engine/fnmatch.h engine/fnmatch.c \
1.135     anton     317:        INSTALL.DOS makefile.dos engine/makefile.dos mkdosmf.sed config.bat \
1.141     anton     318:        dosconf.h gforthmi.bat mkinstalldirs siteinit.fs \
1.135     anton     319:        versions.bsh \
                    320:        configure.cmd mkos2mf.sed os2conf.h makefile.os2 engine/makefile.os2 \
                    321:        gforthmi.cmd glosgen.glo doc/glossaries.doc \
                    322:        $(INCLUDES) $(FORTH_SRC) $(COMPAT) \
1.158     anton     323:        timings.sc \
                    324:        test/coretest.out test/checkans.out
1.135     anton     325: 
1.5       anton     326: RCS_FILES =  ToDo model high-level
1.1       pazsan    327: 
1.143     anton     328: GEN = gforth$(EXE) gforth-ditc$(EXE) gforth-fast$(EXE) kernel/version.fs
1.1       pazsan    329: 
                    330: # things that need a working forth system to be generated
1.100     anton     331: FORTH_GEN0 = prim.b engine/prim.i engine/prim_lab.i kernel/aliases.fs kernel/prim.fs
1.65      pazsan    332: FORTH_GEN =  $(FORTH_GEN0) @KERNEL@ gforth.fi
1.1       pazsan    333: # this is used for antidependences,
1.65      pazsan    334: FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@ 
1.5       anton     335: 
1.38      anton     336: #distributed documentation
1.139     anton     337: DOCDIST = doc/gforth.info doc/gforth.info-* doc/gforth.ps
1.5       anton     338: 
1.48      pazsan    339: KERNLS = kernl16b.fi- kernl16l.fi- \
                    340:         kernl32b.fi- kernl32l.fi- \
                    341:         kernl64b.fi- kernl64l.fi-
1.30      pazsan    342: 
1.134     pazsan    343: GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) doc/gforth.texi doc/gforth.dvi doc/gforth.ps Makefile Makedist engine/Makefile configure
1.1       pazsan    344: 
1.9       anton     345: #standards.info recommends this:
                    346: .SUFFIXES:
                    347: .SUFFIXES: .c .o
                    348: 
1.106     jwilke    349: 
1.100     anton     350: all:   kernel/version.fs more
1.1       pazsan    351: 
1.106     jwilke    352: # use this dependency for phony targets just as mostlyclean,...
                    353: FORCE: ;
                    354: 
1.78      anton     355: #this rule avoids remaking everything after minor changes in Makefile.in
1.100     anton     356: version:       Makefile.in
1.94      anton     357:                if test -r $@ && test x'$(VERSION)' = x`cat $@` ; then true ; else echo $(VERSION) > $@ ; fi
1.78      anton     358: 
1.106     jwilke    359: # With dos we use normal dos echo
                    360: # we cannot pipe the output to engine/version.h directly because
                    361: # of the "/ and \" problem. Copying works because we use the
                    362: # shell und file utilities.
                    363: 
1.100     anton     364: kernel/version.fs:     version
1.123     pazsan    365:        $(MAKE) gforth$(EXE)
1.129     pazsan    366:        echo ": version-string s\" $(VERSION)\" ;" > kernel/version.fs
1.2       pazsan    367: 
1.149     anton     368: more:  engine $(FORTH_GEN) $(GEN)
1.2       pazsan    369: 
1.1       pazsan    370: #from the gcc Makefile: 
                    371: #"Deletion of files made during compilation.
                    372: # There are four levels of this:
                    373: #   `mostlyclean', `clean', `distclean' and `realclean'.
                    374: # `mostlyclean' is useful while working on a particular type of machine.
                    375: # It deletes most, but not all, of the files made by compilation.
                    376: # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
                    377: # `clean' deletes everything made by running `make all'.
                    378: # `distclean' also deletes the files made by config.
                    379: # `realclean' also deletes everything that could be regenerated automatically."
                    380: 
1.106     jwilke    381: mostlyclean:   FORCE
1.118     anton     382:                -$(RM) -rf engine/*.s gforth.fi *.fi~ *.fi- kernel/version.fs \
                    383:                *TAGS gforth~ \
1.100     anton     384:                doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
                    385:                doc/gforth.aux doc/gforth.cp doc/gforth.cps \
                    386:                doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
                    387:                doc/gforth.pg \
                    388:                doc/gforth.toc doc/gforth.tp doc/gforth.vr html \
1.110     anton     389:                gforth-$(VERSION).tar.gz
1.45      anton     390: 
1.146     crook     391: # Just the stuff needed to rebuild the documentation nac03feb1999
                    392: docclean:      FORCE
                    393:                -$(RM) -rf doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
                    394:                doc/gforth.aux doc/gforth.cp doc/gforth.cps \
                    395:                doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
                    396:                doc/gforth.pg \
                    397:                doc/gforth.toc doc/gforth.tp doc/gforth.vr html
                    398: 
1.45      anton     399: clean:         mostlyclean
1.143     anton     400:                -$(RM) -rf $(GEN) engine/gforth$(EXE) \
                    401:                engine/gforth-fast$(EXE) engine/gforth-ditc$(EXE) \
1.119     anton     402:                *.o engine/*.o arch/*/*.o version
1.1       pazsan    403: 
                    404: distclean:     clean
1.118     anton     405:                -$(RM) config.cache config.log config.status \
1.134     pazsan    406:                engine/config.h Makefile Makedist engine/Makefile \
1.118     anton     407:                stamp-h engine/stamp-h \
1.131     anton     408:                doc/version.texi gforthmi
1.1       pazsan    409: 
1.53      anton     410: #realclean is useless, but dangerous, so it's commented out
1.174     pazsan    411: realclean:     distclean
                    412:                -$(RM) $(GEN_PRECIOUS)
1.1       pazsan    413: 
1.45      anton     414: #mostlyclean, but also remove some of the stuff that is distributed
                    415: virtualclean:  mostlyclean
                    416:                -$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \
1.59      anton     417:                gforth-$(VERSION).tar.gz config.cache *~ */*~
1.45      anton     418: 
1.135     anton     419: #Some makes (Ultrix, SunOS, IRIX) are so broken, they cannot read the
                    420: #Makefile if it contains our dist rules.  Therefore we have put these
                    421: #rules in Makedist (you can use them with GNU make on these systems).
1.136     anton     422: dist:          Makedist FORCE
1.135     anton     423:                $(MAKE) -f Makedist d$@
1.134     pazsan    424: 
1.136     anton     425: dosdist:       Makedist FORCE
1.135     anton     426:                $(MAKE) -f Makedist d$@
1.134     pazsan    427: 
1.136     anton     428: srcdist:       Makedist FORCE
1.135     anton     429:                $(MAKE) -f Makedist d$@
1.134     pazsan    430: 
1.136     anton     431: srconlydist:   Makedist FORCE
1.135     anton     432:                $(MAKE) -f Makedist d$@
1.134     pazsan    433: 
1.136     anton     434: docdist:       Makedist FORCE
1.135     anton     435:                $(MAKE) -f Makedist d$@
1.134     pazsan    436: 
1.136     anton     437: htmldist:      Makedist FORCE
1.135     anton     438:                $(MAKE) -f Makedist d$@
1.1       pazsan    439: 
1.136     anton     440: bindist:       Makedist FORCE
1.135     anton     441:                $(MAKE) -f Makedist d$@
                    442: 
1.136     anton     443: binonlydist:   Makedist FORCE
1.135     anton     444:                $(MAKE) -f Makedist d$@
1.22      anton     445: 
                    446: 
1.15      anton     447: #strip gforth, because the debugging stuff is hardly useful once
                    448: # gforth manages to execute more than a few primitives
                    449: 
1.68      anton     450: #install does not depend on gforth.info, because that would require
                    451: #supplying a lot of files that can be easily generated (only info is
                    452: #hard to generate)
1.131     anton     453: install:       gforth$(EXE) $(FORTH_SRC) $(kernel_fi) gforth.fi gforthmi doc/gforth.1 prim install.TAGS installdirs
1.141     anton     454:                touch $(siteforthdir)/siteinit.fs
1.133     pazsan    455:                -$(RM) $(bindir)/gforth$(EXE) $(bindir)/gforth-$(VERSION)$(EXE) $(bindir)/gforthmi
1.147     anton     456:                -$(RM) $(bindir)/gforth-fast$(EXE) $(bindir)/gforth-fast-$(VERSION)$(EXE)
1.131     anton     457:                $(INSTALL_PROGRAM) -s gforth$(EXE) $(bindir)/gforth-$(VERSION)$(EXE)
1.150     anton     458:                (cd $(bindir) && $(LN_S) gforth-$(VERSION)$(EXE) gforth$(EXE))
1.143     anton     459:                $(INSTALL_PROGRAM) -s gforth-fast$(EXE) $(bindir)/gforth-fast-$(VERSION)$(EXE)
1.150     anton     460:                (cd $(bindir) && $(LN_S) gforth-fast-$(VERSION)$(EXE) gforth-fast$(EXE))
1.131     anton     461:                $(INSTALL_PROGRAM) gforthmi $(bindir)/gforthmi-$(VERSION)
1.147     anton     462:                $(INSTALL_PROGRAM) gforth-ditc $(libdir)/gforth/$(VERSION)
1.150     anton     463:                (cd $(bindir) && $(LN_S) gforthmi-$(VERSION) gforthmi)
1.100     anton     464:                -$(INSTALL_DATA) $(srcdir)/doc/gforth.1 $(man1dir)
1.131     anton     465:                -for i in $(srcdir)/doc/gforth.info*; do $(INSTALL_DATA) $$i $(infodir); done
                    466:                for i in $(FORTH_SRC) $(COMPAT) prim; do \
                    467:                        $(INSTALL_DATA) $(srcdir)/$$i $(datadir)/gforth/$(VERSION)/$$i; \
1.9       anton     468:                done
1.110     anton     469:                $(INSTALL_DATA) $(kernel_fi) $(datadir)/gforth/$(VERSION)
1.132     anton     470:                $(RM) gforth.fi
1.171     anton     471:                GFORTHD="./gforth-ditc -p$(libdir)/gforth/site-forth$(PATHSEP)$(siteforthdir)$(PATHSEP)$(datadir)/gforth/$(VERSION) -i $(kernel_fi)" GFORTH="./gforth-ditc --die-on-signal -i $(kernel_fi) $(STARTUP)" ./gforthmi gforth.fi $(FORTHSIZES) $(STARTUP) #gforth.fi contains some path names
1.83      pazsan    472:                $(INSTALL_DATA) gforth.fi $(libdir)/gforth/$(VERSION)
1.131     anton     473:                $(INSTALL_DATA) install.TAGS $(datadir)/gforth/$(VERSION)/TAGS
1.164     crook     474:                # after install, remove these because they are owned by ROOT
                    475:                $(RM) gforth.fi install.TAGS
1.137     pazsan    476:                @if test -d "$(emacssitelispdir)"; then \
1.66      anton     477:                        $(INSTALL_DATA) $(srcdir)/gforth.el $(emacssitelispdir); \
1.55      pazsan    478:                else \
1.66      anton     479:                        echo ">>>>>Please install $(srcdir)/gforth.el in your .../emacs/site-lisp directory"; \
1.52      anton     480:                fi
1.108     pazsan    481:                @echo ">>>>> Please make an entry for Gforth in your info dir file; e.g.:"; \
1.72      anton     482:                echo "* Gforth: (gforth).       A fast interpreter for the Forth language."
1.40      anton     483: 
1.66      anton     484: install-strip: install
                    485: 
1.78      anton     486: installdirs:   mkinstalldirs
1.141     anton     487:                for i in $(bindir) $(man1dir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(siteforthdir); do \
                    488:                        $(srcdir)/mkinstalldirs $$i; \
                    489:                done
1.131     anton     490:                for i in $(CVSDIRS); do \
                    491:                        $(srcdir)/mkinstalldirs $(datadir)/gforth/$(VERSION)/`dirname $$i`; \
                    492:                done
                    493:                $(RM) -rf $(datadir)/gforth/$(VERSION)/arch $(datadir)/gforth/$(VERSION)/engine
1.78      anton     494: 
1.40      anton     495: #deinstall all files specific to this version of gforth
                    496: #to uninstall version foo, type `make uninstall VERSION=foo'
1.106     jwilke    497: uninstall:     FORCE
1.131     anton     498:                -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)$(EXE) $(bindir)/gforthmi-$(VERSION)
                    499:                @echo -e "To remove Gforth completely, type\n$(RM) -rf $(bindir)/gforth$(EXE) $(bindir)/gforthmi $(man1dir)/gforth.1 $(infodir)/gforth.info* $(datadir)/gforth $(libdir)/gforth"
1.40      anton     500: 
1.123     pazsan    501: check test:    gforth$(EXE) gforth.fi
1.158     anton     502:                $(FORTH) test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs -e bye | diff -c - $(srcdir)/test/coretest.out
1.100     anton     503:                $(FORTH) test/other.fs -e bye
1.158     anton     504:                $(FORTH) code.fs test/checkans.fs -e bye | diff -c - $(srcdir)/test/checkans.out
1.153     jwilke    505:                $(FORTHK) -m 100000 prims2x.fs -e \
                    506:                  "c-flag on s\" $(srcdir)/prim.b\" ' output-c process-file bye"| \
                    507:                  diff -c - $(srcdir)/engine/prim.i
1.21      anton     508: 
1.143     anton     509: bench:         gforth-fast$(EXE) gforth.fi
1.40      anton     510:                @echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
1.143     anton     511:                time $(FORTH_FAST) siev.fs -e "main bye"
                    512:                time $(FORTH_FAST) bubble.fs -e "main bye"
                    513:                time $(FORTH_FAST) -m 160000 matrix.fs -e "main bye"
                    514:                time $(FORTH_FAST) fib.fs -e "main bye"
1.40      anton     515: 
1.106     jwilke    516: # -------------        Make forth images
1.87      anton     517: 
1.150     anton     518: # How to make new images:
1.106     jwilke    519: # 1. Produce an image called kernlXYZ.fi-
                    520: #    the original kernel.fi is not touched because it's needed for creation
                    521: # 2. copy old kernlXYZ.fi to kernlXYZ.fi~
                    522: #    that's a backup copy in case the new kernels don't work
                    523: # 3. copy new kernels to kernlXYZ.fi
                    524: #    these are the ones we want to use now
1.1       pazsan    525: 
1.100     anton     526: kernl16l.fi-:  $(KERN_SRC) kernel/version.fs mach16l.fs $(FORTH_GEN0)
1.155     jwilke    527:                $(FORTHK) -e 's" mach16l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16l.fi- $(bindir)/gforth-$(VERSION) bye"
1.87      anton     528: 
1.100     anton     529: kernl16b.fi-:  $(KERN_SRC) kernel/version.fs mach16b.fs $(FORTH_GEN0)
1.132     anton     530:                $(FORTHK) -e 's" mach16b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16b.fi- $(bindir)/gforth-$(VERSION) bye"
1.87      anton     531: 
1.100     anton     532: kernl32l.fi-:  $(KERN_SRC) kernel/version.fs mach32l.fs $(FORTH_GEN0)
1.132     anton     533:                $(FORTHK) -e 's" mach32l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32l.fi- $(bindir)/gforth-$(VERSION) bye"
1.87      anton     534: 
1.100     anton     535: kernl32b.fi-:  $(KERN_SRC) kernel/version.fs mach32b.fs $(FORTH_GEN0)
1.132     anton     536:                $(FORTHK) -e 's" mach32b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32b.fi- $(bindir)/gforth-$(VERSION) bye"
1.100     anton     537: 
                    538: kernl64l.fi-:  $(KERN_SRC) kernel/version.fs mach64l.fs $(FORTH_GEN0)
1.132     anton     539:                $(FORTHK) -e 's" mach64l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64l.fi- $(bindir)/gforth-$(VERSION) bye"
1.100     anton     540: 
                    541: kernl64b.fi-:  $(KERN_SRC) kernel/version.fs mach64b.fs $(FORTH_GEN0)
1.132     anton     542:                $(FORTHK) -e 's" mach64b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64b.fi- $(bindir)/gforth-$(VERSION) bye"
1.100     anton     543: 
1.166     pazsan    544: kernl-%.fi:    arch/%/mach.fs $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
1.132     anton     545:                $(FORTHK) -e 's" $<"' $(srcdir)/kernel/main.fs -e "save-cross $@- $(bindir)/gforth-$(VERSION) bye"
1.100     anton     546:                if [ -f `echo $< | sed s/fs/sh/` ]; \
                    547:                then sh `echo $< | sed s/fs/sh/` $@; \
                    548:                else $(CP) $@- $@; \
                    549:                fi
1.30      pazsan    550: 
1.166     pazsan    551: arch/%/mach.fs:        arch/%/prim.fs arch/%/asm.fs
1.122     pazsan    552: 
1.87      anton     553: kernl16b.fi:   $(KERNLS)
1.97      anton     554:                -$(CP) kernl16b.fi kernl16b.fi~
                    555:                -$(CP) kernl16b.fi- kernl16b.fi
1.87      anton     556: 
                    557: kernl16l.fi:   $(KERNLS)
1.97      anton     558:                -$(CP) kernl16l.fi kernl16l.fi~
                    559:                -$(CP) kernl16l.fi- kernl16l.fi
1.87      anton     560: 
1.96      anton     561: kernl32b.fi:   $(KERNLS)
1.97      anton     562:                -$(CP) kernl32b.fi kernl32b.fi~
                    563:                -$(CP) kernl32b.fi- kernl32b.fi
1.87      anton     564: 
                    565: kernl32l.fi:   $(KERNLS)
                    566:                -$(CP) kernl32l.fi kernl32l.fi~
                    567:                -$(CP) kernl32l.fi- kernl32l.fi
                    568: 
                    569: kernl64b.fi:   $(KERNLS)
                    570:                -$(CP) kernl64b.fi kernl64b.fi~
                    571:                -$(CP) kernl64b.fi- kernl64b.fi
                    572: 
                    573: kernl64l.fi:   $(KERNLS)
                    574:                -$(CP) kernl64l.fi kernl64l.fi~
                    575:                -$(CP) kernl64l.fi- kernl64l.fi
1.89      anton     576: 
1.100     anton     577: #kernl%.fi:    kernl%.fi- $(KERNLS)
                    578: #              -$(CP) $@ $@~
                    579: #              -$(CP) $< $@
1.87      anton     580: 
1.123     pazsan    581: gforth.fi:     $(kernel_fi) gforthmi gforth$(EXE) gforth-ditc$(EXE) $(GFORTH_FI_SRC)
1.171     anton     582:                GFORTHD="./gforth-ditc -p .$(PATHSEP)$(srcdir)" GFORTH="./gforth-ditc --die-on-signal -p .$(PATHSEP)$(srcdir) -i $(kernel_fi) $(STARTUP)" ./gforthmi gforth.fi $(FORTHSIZES) $(FORTHKFLAGS) $(STARTUP)
1.9       anton     583: 
1.106     jwilke    584: # -------------        Make c-engine
1.1       pazsan    585: 
1.100     anton     586: prim.b:                prim
                    587:                m4 -s $(srcdir)/prim >$@ 
                    588: 
                    589: engine/prim.i:         prim.b prims2x.fs
1.153     jwilke    590:                $(FORTHK) prims2x.fs -e "c-flag on s\" prim.b\" ' output-c process-file bye" >$@-
1.93      pazsan    591:                $(CP) $@- $@
                    592:                $(RM) $@-
1.1       pazsan    593: 
1.100     anton     594: engine/prim_lab.i:     prim.b prims2x.fs
1.153     jwilke    595:                $(FORTHK) prims2x.fs -e "c-flag on s\" prim.b\" ' output-label process-file bye" >$@-
1.93      pazsan    596:                $(CP) $@- $@
                    597:                $(RM) $@-
1.1       pazsan    598: 
1.100     anton     599: kernel/aliases.fs:     prim.b prims2x.fs kernel/aliases0.fs
                    600:                $(CP) kernel/aliases0.fs $@-
1.153     jwilke    601:                $(FORTHK) prims2x.fs -e "forth-flag on s\" prim.b\" ' output-alias process-file bye" >>$@-
1.93      pazsan    602:                $(CP) $@- $@
                    603:                $(RM) $@-
1.1       pazsan    604: 
1.100     anton     605: kernel/prim.fs:        prim.b prims2x.fs kernel/prim0.fs
                    606:                $(CP) kernel/prim0.fs kernel/prim.fs-
1.153     jwilke    607:                $(FORTHK) prims2x.fs -e "forth-flag on s\" prim.b\" ' output-forth process-file bye" >>$@-
1.93      pazsan    608:                $(CP) $@- $@
                    609:                $(RM) $@-
1.27      anton     610: 
1.130     pazsan    611: gforth$(EXE):          engines
1.123     pazsan    612:                -$(CP) gforth$(EXE) gforth~
1.110     anton     613:                $(CP) engine/$@ $@
1.106     jwilke    614:                @GFORTH_EXE@
                    615: 
1.143     anton     616: gforth-fast$(EXE):     engines
                    617:                $(CP) engine/$@ $@
                    618:                @GFORTHFAST_EXE@
                    619: 
1.130     pazsan    620: gforth-ditc$(EXE):     engines
1.110     anton     621:                $(CP) engine/$@ $@
1.106     jwilke    622:                @GFORTHDITC_EXE@
1.130     pazsan    623: 
1.168     jwilke    624: engines:       FORCE engine/Makefile engine/prim.i engine/prim_lab.i
1.143     anton     625:                cd engine && $(MAKE) gforth$(EXE) gforth-fast$(EXE) gforth-ditc$(EXE)
1.107     pazsan    626: 
                    627: # ------------- additional C primitives
                    628: 
                    629: %.c:           %.pri prim2cl.fs
                    630:                $(FORTHK) prim2cl.fs -e "file $< altogether bye" >$@
                    631: 
                    632: %.so:          %.c
                    633:                $(GCC) -shared $(CFLAGS) $< -o $@
1.106     jwilke    634: 
                    635: # -------------        Make Documentation
                    636: 
                    637: #TAGS is a GNU standard target
                    638: TAGS:          gforth.TAGS
                    639:                $(CP) gforth.TAGS $@
                    640: 
1.131     anton     641: install.TAGS:  gforth.TAGS
                    642:                sed 's:^\$(srcdir)/:$(datadir)/gforth/$(VERSION)/:' gforth.TAGS >install.TAGS
                    643: 
1.106     jwilke    644: gforth.TAGS:   @kernel_fi@ gforth $(GFORTH_FI_SRC) prim.TAGS
1.171     anton     645:                $(FORTHK) etags.fs exceptions.fs startup.fs -e bye
1.106     jwilke    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.151     crook     654: doc/doc.fd:    doc/makedoc.fs $(GFORTH_FI_SRC) code.fs objects.fs oof.fs moofglos.fs
1.171     anton     655:                $(FORTHK) -e "s\" doc/doc.fd\"" doc/makedoc.fs exceptions.fs startup.fs code.fs objects.fs oof.fs moofglos.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.164     crook     686: ### need makeinfo 4.0 to generate html. Otherwise, use texi2html..
1.170     anton     687:                cd html; $(MAKEINFO) --html -I ../doc ../doc/gforth.texi
                    688: ###            cd html; $(TEXI2HTML) -menu -split_node ../doc/gforth.texi
1.114     anton     689: 
                    690: doc/gforth.txt:        $(GFORTH_TEXI)
                    691:                -cd doc; $(MAKEINFO) --no-headers --no-split gforth.texi >gforth.txt
1.63      pazsan    692: 
1.164     crook     693: doc:           info doc/gforth.ps html doc/gforth.txt TAGS
1.1       pazsan    694: 
1.9       anton     695: # For an explanation of the following Makefile rules, see node
                    696: # `Automatic Remaking' in GNU Autoconf documentation.
1.159     anton     697: 
                    698: #Note: no target "$(srcdir)/configure", because that does not trigger 
                    699: #unless $(srcdir)!="."
                    700: configure:     configure.in aclocal.m4
1.69      pazsan    701:                cd $(srcdir) && autoconf
1.111     anton     702: 
                    703: aclocal.m4:    acinclude.m4 configure.in
                    704:                aclocal
1.69      pazsan    705: 
1.51      anton     706: # autoheader might not change config.h.in, so touch a stamp file.
1.125     anton     707: engine/config.h.in:    stamp-h.in
1.100     anton     708: stamp-h.in:    configure.in  acconfig.h
1.69      pazsan    709:                cd $(srcdir) && autoheader
                    710:                echo timestamp > $(srcdir)/stamp-h.in
1.51      anton     711: 
1.100     anton     712: engine/config.h:       stamp-h
1.125     anton     713: stamp-h:       engine/config.h.in config.status
1.100     anton     714:                CONFIG_FILES=$@ CONFIG_HEADERS=engine/config.h ./config.status
1.119     anton     715:                echo timestamp > stamp-h
1.112     anton     716: 
1.135     anton     717: Makefile Makedist engine/Makefile gforthmi:    Makefile.in Makedist.in engine/Makefile.in gforthmi.in config.status
1.131     anton     718:                CONFIG_FILES="$@" CONFIG_HEADERS=engine/config.h ./config.status
1.112     anton     719: 
1.69      pazsan    720: config.status: configure
1.51      anton     721:                ./config.status --recheck
1.30      pazsan    722: 
1.51      anton     723: 
                    724: #create files for DOS, because DOS cannot do it itself
1.106     jwilke    725: makefile.dos: mkdosmf.sed Makefile.in engine/Makefile.in
1.30      pazsan    726:        sed -f mkdosmf.sed <Makefile.in >makefile.dos
1.100     anton     727:        sed -f mkdosmf.sed <engine/Makefile.in >engine/makefile.dos
1.69      pazsan    728: 
1.106     jwilke    729: makefile.os2: mkos2mf.sed Makefile.in engine/Makefile.in
1.69      pazsan    730:        sed -f mkos2mf.sed <Makefile.in >makefile.os2
1.100     anton     731:        sed -f mkos2mf.sed <engine/Makefile.in >engine/makefile.os2
1.69      pazsan    732:        echo '%.o:      %.c' >>makefile.os2
                    733:        echo '          $$(GCC) $$(CFLAGS) -c $$<' >>makefile.os2
1.100     anton     734:        echo '%.o:      %.c' >>engine/makefile.os2
                    735:        echo '          $$(GCC) $$(CFLAGS) -c $$<' >>engine/makefile.os2

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