Annotation of gforth/Makefile.in, revision 1.207

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

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