Annotation of gforth/Makefile.in, revision 1.82

1.38      anton       1: #Makefile for Gforth
                      2: 
1.66      anton       3: #Copyright (C) 1995, 1996 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.77      anton      26: #gforth version
                     27: VERSION_MAJOR=0
                     28: VERSION_MINOR=2
                     29: VERSION_RELEASE=9
                     30: VERSION        =$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_RELEASE)
                     31: DOSVERSION=$(VERSION_MAJOR)$(VERSION_MINOR)$(VERSION_RELEASE)
1.9       anton      32: SHELL  = /bin/sh
1.4       pazsan     33: RM     = rm
1.74      pazsan     34: RMTREE = rm -rf
1.4       pazsan     35: CP     = cp
1.74      pazsan     36: TAR    = tar cf -
1.9       anton      37: INSTALL        = @INSTALL@
                     38: INSTALL_PROGRAM = @INSTALL_PROGRAM@
                     39: INSTALL_DATA = @INSTALL_DATA@
                     40: LN_S   = @LN_S@
1.48      pazsan     41: GCC    = @CC@
1.23      anton      42: CC     = $(GCC)
1.68      anton      43: PATHSEP = @PATHSEP@
1.67      anton      44: FORTHPATH = $(libdir)/gforth/site-forth$(PATHSEP)$(datadir)/gforth/site-forth$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)$(PATHSEP).
1.72      anton      45: FORTHSIZES = @FORTHSIZES@
1.67      anton      46: FORTH  = ./gforth -p $(FORTHPATH)$(PATHSEP)$(srcdir)
1.69      pazsan     47: FORTHK = ./gforth -p .$(PATHSEP)$(srcdir) -i ./kernel.fi
1.66      anton      48: FORTHP = ./gforth -i ./kernel.fi
1.22      anton      49: STRIP  = strip
1.32      anton      50: TEXI2DVI = texi2dvi
1.38      anton      51: DVI2PS = dvips -D300
1.15      anton      52: #you can get texi2html from http://asis01.cern.ch/infohtml/texi2html.html
                     53: TEXI2HTML = texi2html
1.11      anton      54: MAKEINFO = makeinfo
1.9       anton      55: XCFLAGS        = @CFLAGS@
                     56: XDEFINES = @DEFS@
1.12      anton      57: SWITCHES = $(XCFLAGS) $(XDEFINES) #-DNDEBUG #turn off assertions
1.48      pazsan     58: ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves
1.30      pazsan     59: DEBUGFLAG = @DEBUGFLAG@
1.66      anton      60: CFLAGS = $(DEBUGFLAG) -I. -I$(srcdir) -O4 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(FORTHPATH)\"
1.1       pazsan     61: 
                     62: #John Wavrik should use -Xlinker -N to get a writable text (executable)
1.30      pazsan     63: XLDFLAGS = @LDFLAGS@
                     64: GCCLDFLAGS = @GCCLDFLAGS@
                     65: LDFLAGS        =  $(DEBUGFLAG) $(XLDFLAGS) $(GCCLDFLAGS)
1.9       anton      66: LDLIBS = @LIBS@
                     67: 
1.52      anton      68: VPATH = @srcdir@
1.9       anton      69: prefix = @prefix@
                     70: exec_prefix = @exec_prefix@
                     71: srcdir = @srcdir@
                     72: bindir = $(exec_prefix)/bin
                     73: #read-only architecture-independent files
                     74: datadir = $(prefix)/share
                     75: #read-only architecture-dependent non-ascii files
                     76: libdir = $(prefix)/lib
                     77: infodir = $(prefix)/info
1.52      anton      78: mandir = $(prefix)/man
                     79: man1dir= $(mandir)/man1
                     80: man1ext= .1
                     81: #older emacses have their site-lisp in $(libdir)/emacs/
                     82: emacssitelispdir=$(datadir)/emacs/site-lisp
1.1       pazsan     83: 
1.65      pazsan     84: INCLUDES = forth.h threading.h io.h
1.1       pazsan     85: 
1.52      anton      86: KERN_SRC = \
1.82    ! pazsan     87:        aliases0.fs \
1.52      anton      88:        aliases.fs \
1.82    ! pazsan     89:        conditionals.fs \
1.52      anton      90:        cross.fs \
                     91:        errore.fs \
1.82    ! pazsan     92:        files.fs \
1.65      pazsan     93:        kernel.fs \
1.52      anton      94:        main.fs \
                     95:        search-order.fs \
1.63      pazsan     96:        special.fs \
1.52      anton      97:        tools.fs \
                     98:        toolsext.fs \
1.65      pazsan     99:        vars.fs
1.52      anton     100: 
                    101: GFORTH_FI_SRC = \
                    102:        assert.fs \
1.60      pazsan    103:        blockedit.fb \
1.52      anton     104:        blocks.fs \
                    105:        bufio.fs \
                    106:        debug.fs \
                    107:        debugging.fs \
                    108:        dumpimage.fs \
                    109:        environ.fs \
1.82    ! pazsan    110:        errors.fs \
        !           111:        extend.fs \
1.52      anton     112:        float.fs \
                    113:        glocals.fs \
                    114:        hash.fs \
                    115:        history.fs \
1.64      anton     116:        intcomp.fs \
1.52      anton     117:        look.fs \
                    118:        search-order.fs \
                    119:        see.fs \
                    120:        source.fs \
                    121:        startup.fs \
                    122:        struct.fs \
                    123:        stuff.fs \
1.60      pazsan    124:        tasker.fs \
1.52      anton     125:        termsize.fs \
                    126:        vt100.fs \
                    127:        vt100key.fs \
                    128:        wordinfo.fs
                    129: 
                    130: FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_SRC) \
1.75      anton     131:        ans-report.fs ansi.fs answords.fs \
1.52      anton     132:        checkans.fs \
                    133:        code.fs colorize.fs \
                    134:        doskey.fs ds2texi.fs \
                    135:        etags.fs filedump.fs \
                    136:        glosgen.fs gray.fs \
                    137:        makedoc.fs \
1.49      anton     138:        mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
1.52      anton     139:        more.fs other.fs prims2x.fs random.fs \
                    140:        sieve.fs \
                    141:        site-init.fs \
                    142:        tt.fs sokoban.fs \
                    143:        wordsets.fs \
1.61      anton     144:        tester.fs coretest.fs postponetest.fs dbltest.fs \
1.65      pazsan    145:        bubble.fs siev.fs matrix.fs fib.fs \
1.75      anton     146:        oof.fs oofsampl.fs objects.fs
1.1       pazsan    147: 
1.56      pazsan    148: SOURCES        = CVS compat Makefile.in configure.in configure config.sub config.guess \
1.65      pazsan    149:        acconfig.h config.h.in stamp-h.in \
1.40      anton     150:        install-sh INSTALL README ToDo BUGS model COPYING Benchres \
1.28      pazsan    151:        gforth.ds texinfo.tex gforth.1 gforth.el \
1.62      anton     152:        primitives engine.c main.c io.c memcasecmp.c \
1.17      pazsan    153:        m68k.h mips.h 386.h hppa.h cache.c sparc.h power.h alpha.h 32bit.h \
1.14      anton     154:        getopt.c getopt1.c getopt.h select.c \
1.69      pazsan    155:        ecvt.c memcmp.c strtol.c strtoul.c ansidecl.h memmove.c pow10.c atanh.c \
1.56      pazsan    156:        strerror.c strsignal.c dblsub.c \
1.65      pazsan    157:        INSTALL.DOS makefile.dos mkdosmf.sed configure.bat dosconf.h \
1.48      pazsan    158:        startup.dos history.dos \
1.74      pazsan    159:        configure.cmd mkos2mf.sed os2conf.h makefile.os2 \
1.6       pazsan    160:        glosgen.glo glossaries.doc \
1.1       pazsan    161:        $(INCLUDES) $(FORTH_SRC)
                    162: 
1.5       anton     163: RCS_FILES =  ToDo model high-level
1.1       pazsan    164: 
1.48      pazsan    165: GEN = gforth version.fs
1.1       pazsan    166: 
1.62      anton     167: OBJECTS        = engine.o io.o main.o memcasecmp.o @LIBOBJS@ @getopt_long@
1.1       pazsan    168: 
                    169: # things that need a working forth system to be generated
1.15      anton     170: FORTH_GEN0 = primitives.b primitives.i prim_labels.i aliases.fs
1.65      pazsan    171: FORTH_GEN =  $(FORTH_GEN0) @KERNEL@ gforth.fi
1.1       pazsan    172: # this is used for antidependences,
1.65      pazsan    173: FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@ 
1.5       anton     174: 
1.38      anton     175: #distributed documentation
1.68      anton     176: DOCDIST = gforth.info* gforth.ps
1.5       anton     177: 
1.72      anton     178: #stuff in a binonly distribution 
                    179: BINONLYDIST = config.status Makefile gforth $(OBJECTS) \
                    180:        machine.h config.h kernel.fi stamp-h version.h version.fs \
                    181:        INSTALL.BINDIST
                    182: 
1.48      pazsan    183: KERNLS = kernl16b.fi- kernl16l.fi- \
                    184:         kernl32b.fi- kernl32l.fi- \
                    185:         kernl64b.fi- kernl64l.fi-
1.30      pazsan    186: 
                    187: GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) gforth.texi gforth.dvi gforth.ps Makefile configure
1.1       pazsan    188: 
1.9       anton     189: #standards.info recommends this:
                    190: .SUFFIXES:
                    191: .SUFFIXES: .c .o
                    192: 
1.48      pazsan    193: all:   version.fs more
1.1       pazsan    194: 
1.78      anton     195: #this rule avoids remaking everything after minor changes in Makefile.in
                    196: version-stamp: Makefile.in
1.79      anton     197:                test x'$(VERSION)' = x`cat $@` || echo $(VERSION) >$@
1.78      anton     198: 
                    199: version.h:     version-stamp
1.71      anton     200:                echo "static char gforth_version[]=\"$(VERSION)\" ;" >$@
1.48      pazsan    201: 
1.78      anton     202: version.fs:    version-stamp
1.48      pazsan    203:                $(MAKE) gforth
                    204:                echo ": version-string s\" $(VERSION)\" ;" >$@
1.2       pazsan    205: 
1.3       pazsan    206: more:  $(FORTH_GEN) gforth
1.2       pazsan    207: 
1.1       pazsan    208: #from the gcc Makefile: 
                    209: #"Deletion of files made during compilation.
                    210: # There are four levels of this:
                    211: #   `mostlyclean', `clean', `distclean' and `realclean'.
                    212: # `mostlyclean' is useful while working on a particular type of machine.
                    213: # It deletes most, but not all, of the files made by compilation.
                    214: # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
                    215: # `clean' deletes everything made by running `make all'.
                    216: # `distclean' also deletes the files made by config.
                    217: # `realclean' also deletes everything that could be regenerated automatically."
                    218: 
1.45      anton     219: mostlyclean:
1.66      anton     220:                -$(RM) -rf *.s gforth.fi *.fi~ *.fi- version.fs *TAGS \
                    221:                crossdoc.fd doc.fd gforth.texi gforth.fns gforth.aux gforth.cp gforth.cps \
1.45      anton     222:                gforth.dvi gforth.fn gforth.ky gforth.log gforth.pg \
1.72      anton     223:                gforth.toc gforth.tp gforth.vr html gforth-$(VERSION).tar.gz \
1.73      anton     224:                version.h
1.45      anton     225: 
                    226: clean:         mostlyclean
                    227:                -$(RM) -rf $(GEN) *.o 
1.1       pazsan    228: 
                    229: distclean:     clean
1.73      anton     230:                -$(RM) machine.h kernel.fi config.cache config.log \
                    231:                config.status config.h Makefile stamp-h
1.1       pazsan    232: 
1.53      anton     233: #realclean is useless, but dangerous, so it's commented out
                    234: #realclean:    distclean
                    235: #              -$(RM) $(GEN_PRECIOUS)
1.1       pazsan    236: 
1.45      anton     237: #mostlyclean, but also remove some of the stuff that is distributed
                    238: virtualclean:  mostlyclean
                    239:                -$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \
1.59      anton     240:                gforth-$(VERSION).tar.gz config.cache *~ */*~
1.45      anton     241: 
1.66      anton     242: #use dist targets only when srcdir=.
1.69      pazsan    243: dist:          $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST)
1.74      pazsan    244:                -$(RMTREE) gforth-$(VERSION)
1.21      anton     245:                mkdir gforth-$(VERSION)
1.65      pazsan    246:                $(CP) -rp $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) gforth-$(VERSION)
1.74      pazsan    247:                $(TAR) gforth-$(VERSION)|gzip -9 >gforth-$(VERSION).tar.gz
                    248:                -$(RMTREE) gforth-$(VERSION)
                    249: 
                    250: #use dist targets only when srcdir=.
                    251: dosdist:       $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST)
                    252:                -$(RMTREE) gforth.$(DOSVERSION)
                    253:                mkdir gforth.$(DOSVERSION)
                    254:                $(CP) -rp $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) gforth.$(DOSVERSION)
                    255:                zip -r9 gforth.zip gforth.$(DOSVERSION)/*
                    256:                -$(RMTREE) gforth.$(DOSVERSION)
1.1       pazsan    257: 
1.69      pazsan    258: #A source distribution contains only the things needed to install gforth,
                    259: #without the documents.
                    260: srcdist:       $(SOURCES) $(FORTH_GEN0) @KERNEL@
1.74      pazsan    261:                -$(RMTREE) gforth-$(VERSION)
1.69      pazsan    262:                mkdir gforth-$(VERSION)
                    263:                $(CP) -rp $(SOURCES) $(FORTH_GEN0) @KERNEL@ gforth-$(VERSION)
1.74      pazsan    264:                $(TAR) gforth-$(VERSION)|gzip -9 >gforth-src-$(VERSION).tar.gz
                    265:                -$(RMTREE) gforth-$(VERSION)
1.69      pazsan    266: 
                    267: #A document distribution contains only the documents, which can be created
                    268: #with MAKE.
                    269: docdist:       $(DOCDIST)
1.74      pazsan    270:                -$(RMTREE) gforth-$(VERSION)
1.69      pazsan    271:                mkdir gforth-$(VERSION)
                    272:                $(CP) -rp $(DOCDIST) gforth-$(VERSION)
1.74      pazsan    273:                $(TAR) gforth-$(VERSION)|gzip -9 >gforth-doc-$(VERSION).tar.gz
                    274:                -$(RMTREE) gforth-$(VERSION)
1.69      pazsan    275: 
1.22      anton     276: #a binary distribution contains the complete source distribution,
                    277: # the objects, the executable and the links. the objects are there for making
                    278: # make happy.
1.72      anton     279: bindist:       $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST)
1.74      pazsan    280:                -$(RMTREE) gforth-$(VERSION)
1.22      anton     281:                mkdir gforth-$(VERSION)
1.72      anton     282:                $(CP) -rp -d $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST) gforth-$(VERSION)
1.22      anton     283:                strip gforth-$(VERSION)/gforth
1.74      pazsan    284:                $(TAR) gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-@host@.tar.gz
1.22      anton     285: 
                    286: #makes a package with only the stuff not present in the source
                    287: #package. For installation the source package is still needed!
                    288: #This is useful if you want to distribute many binary versions in
                    289: #little space (e.g., on floppy disk): Put the source package and
                    290: #all the binonly packages you are interested in on the disk. The user
                    291: #then just has to unpack the source and his favourite binonly into the
                    292: #same directory and has a full binary distribution.
1.72      anton     293: binonlydist:   $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST)
1.74      pazsan    294:                -$(RMTREE) gforth-$(VERSION)
1.22      anton     295:                mkdir gforth-$(VERSION)
1.72      anton     296:                $(CP) -p -d  $(BINONLYDIST) gforth-$(VERSION)
1.22      anton     297:                strip gforth-$(VERSION)/gforth
1.74      pazsan    298:                $(TAR) gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-binonly-@host@.tar.gz
1.22      anton     299: 
                    300: 
1.15      anton     301: #strip gforth, because the debugging stuff is hardly useful once
                    302: # gforth manages to execute more than a few primitives
                    303: 
1.68      anton     304: #install does not depend on gforth.info, because that would require
                    305: #supplying a lot of files that can be easily generated (only info is
                    306: #hard to generate)
1.78      anton     307: install:       gforth $(FORTH_SRC) kernel.fi gforth.fi gforth.1 primitives gforth.TAGS installdirs
1.42      anton     308:                touch $(datadir)/gforth/site-forth/site-init.fs
1.49      anton     309:                -$(RM) $(bindir)/gforth $(bindir)/gforth-$(VERSION)
1.15      anton     310:                $(INSTALL_PROGRAM) -s gforth $(bindir)
1.49      anton     311:                ln $(bindir)/gforth $(bindir)/gforth-$(VERSION)
1.78      anton     312:                $(INSTALL_DATA) $(srcdir)/gforth.1 $(man1dir)
1.66      anton     313:                for i in $(srcdir)/gforth.info*; do $(INSTALL_DATA) $$i $(infodir); done
1.50      anton     314:                for i in $(FORTH_SRC) primitives; do \
1.66      anton     315:                        $(INSTALL_DATA) $(srcdir)/$$i $(datadir)/gforth/$(VERSION); \
1.9       anton     316:                done
1.65      pazsan    317:                $(INSTALL_DATA) kernel.fi $(libdir)/gforth/$(VERSION)
1.77      anton     318:                $(RM) gforth.fi; $(MAKE) gforth.fi #gforth.fi contains some path names
1.78      anton     319:                sed s:^$(srcdir)/:$(datadir)/gforth/$(VERSION)/: gforth.TAGS >TAGS; $(INSTALL_DATA) TAGS $(datadir)/gforth/$(VERSION)
1.52      anton     320:                if test -d $(emacssitelispdir); then \
1.66      anton     321:                        $(INSTALL_DATA) $(srcdir)/gforth.el $(emacssitelispdir); \
1.55      pazsan    322:                else \
1.66      anton     323:                        echo ">>>>>Please install $(srcdir)/gforth.el in your .../emacs/site-lisp directory"; \
1.52      anton     324:                fi
1.68      anton     325:                echo ">>>>> Please make an entry for Gforth in your info dir file; e.g.:"; \
1.72      anton     326:                echo "* Gforth: (gforth).       A fast interpreter for the Forth language."
1.40      anton     327: 
1.66      anton     328: install-strip: install
                    329: 
1.78      anton     330: installdirs:   mkinstalldirs
                    331:                $(srcdir)/mkinstalldirs $(bindir) $(man1dir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(datadir)/gforth/site-forth
                    332: 
1.40      anton     333: #deinstall all files specific to this version of gforth
                    334: #to uninstall version foo, type `make uninstall VERSION=foo'
                    335: uninstall:     
                    336:                -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)
1.81      anton     337:                @echo -e "Type\n$(RM) -rf $(bindir)/gforth $(man1dir)/gforth.1 $(infodir)/gforth.info* $(datadir)/gforth $(libdir)/gforth\nto remove Gforth completely"
1.40      anton     338: 
1.67      anton     339: check test:    gforth gforth.fi
1.61      anton     340:                $(FORTH) tester.fs coretest.fs postponetest.fs dbltest.fs -e bye
1.38      anton     341:                $(FORTH) code.fs checkans.fs -e bye
1.21      anton     342:                @echo 'Expect no differences'
1.80      anton     343:                $(FORTH) -m 100000 prims2x.fs -e "s\" $(srcdir)/primitives.b\" ' output-c process-file bye"| diff -c - $(srcdir)/primitives.i
1.21      anton     344: 
1.46      anton     345: bench:         gforth gforth.fi
1.40      anton     346:                @echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
                    347:                time $(FORTH) siev.fs -e "main bye"
                    348:                time $(FORTH) bubble.fs -e "main bye"
1.41      anton     349:                time $(FORTH) -m 160000 matrix.fs -e "main bye"
1.40      anton     350:                time $(FORTH) fib.fs -e "main bye"
                    351: 
1.9       anton     352: dvi:           gforth.dvi
1.5       anton     353: 
1.21      anton     354: gforth:                $(OBJECTS)
1.4       pazsan    355:                -$(CP) gforth gforth~
1.1       pazsan    356:                $(GCC) $(LDFLAGS) $(OBJECTS) $(LDLIBS) -o $@
1.9       anton     357:                @MAKE_EXE@
1.1       pazsan    358: 
1.65      pazsan    359: kernl16l.fi-:  $(KERN_SRC) version.fs mach16l.fs $(FORTH_GEN0)
1.66      anton     360:                $(FORTHK) -e 's" mach16l.fs"' main.fs -e "save-cross kernl16l.fi- $(bindir)/gforth-$(VERSION) bye"
1.13      pazsan    361: 
1.65      pazsan    362: kernl16b.fi-:  $(KERN_SRC) version.fs mach16b.fs $(FORTH_GEN0)
1.66      anton     363:                $(FORTHK) -e 's" mach16b.fs"' main.fs -e "save-cross kernl16b.fi- $(bindir)/gforth-$(VERSION) bye"
1.13      pazsan    364: 
1.65      pazsan    365: kernl32l.fi-:  $(KERN_SRC) version.fs mach32l.fs $(FORTH_GEN0)
1.66      anton     366:                $(FORTHK) -e 's" mach32l.fs"' main.fs -e "save-cross kernl32l.fi- $(bindir)/gforth-$(VERSION) bye"
1.1       pazsan    367: 
1.65      pazsan    368: kernl32b.fi-:  $(KERN_SRC) version.fs mach32b.fs $(FORTH_GEN0)
1.66      anton     369:                $(FORTHK) -e 's" mach32b.fs"' main.fs -e "save-cross kernl32b.fi- $(bindir)/gforth-$(VERSION) bye"
1.13      pazsan    370: 
1.65      pazsan    371: kernl64l.fi-:  $(KERN_SRC) version.fs mach64l.fs $(FORTH_GEN0)
1.66      anton     372:                $(FORTHK) -e 's" mach64l.fs"' main.fs -e "save-cross kernl64l.fi- $(bindir)/gforth-$(VERSION) bye"
1.13      pazsan    373: 
1.65      pazsan    374: kernl64b.fi-:  $(KERN_SRC) version.fs mach64b.fs $(FORTH_GEN0)
1.66      anton     375:                $(FORTHK) -e 's" mach64b.fs"' main.fs -e "save-cross kernl64b.fi- $(bindir)/gforth-$(VERSION) bye"
1.30      pazsan    376: 
                    377: kernl16b.fi:   $(KERNLS)
1.31      pazsan    378:                -$(CP) kernl16b.fi kernl16b.fi~
1.48      pazsan    379:                -$(CP) kernl16b.fi- kernl16b.fi
1.30      pazsan    380:                @LINK_KERNL16B@
                    381: 
                    382: kernl16l.fi:   $(KERNLS)
1.31      pazsan    383:                -$(CP) kernl16l.fi kernl16l.fi~
1.48      pazsan    384:                -$(CP) kernl16l.fi- kernl16l.fi
1.30      pazsan    385:                @LINK_KERNL16L@
                    386: 
                    387: kernl32b.fi:   $(KERNLS)
1.31      pazsan    388:                -$(CP) kernl32b.fi kernl32b.fi~
1.48      pazsan    389:                -$(CP) kernl32b.fi- kernl32b.fi
1.30      pazsan    390:                @LINK_KERNL32B@
                    391: 
                    392: kernl32l.fi:   $(KERNLS)
1.31      pazsan    393:                -$(CP) kernl32l.fi kernl32l.fi~
1.48      pazsan    394:                -$(CP) kernl32l.fi- kernl32l.fi
1.30      pazsan    395:                @LINK_KERNL32L@
                    396: 
                    397: kernl64b.fi:   $(KERNLS)
1.31      pazsan    398:                -$(CP) kernl64b.fi kernl64b.fi~
1.48      pazsan    399:                -$(CP) kernl64b.fi- kernl64b.fi
1.13      pazsan    400:                @LINK_KERNL64B@
1.1       pazsan    401: 
1.30      pazsan    402: kernl64l.fi:   $(KERNLS)
1.31      pazsan    403:                -$(CP) kernl64l.fi kernl64l.fi~
1.48      pazsan    404:                -$(CP) kernl64l.fi- kernl64l.fi
1.30      pazsan    405:                @LINK_KERNL64L@
                    406: 
1.65      pazsan    407: gforth.fi:     @kernel_fi@ gforth $(GFORTH_FI_SRC)
1.78      anton     408:                $(FORTHK) --clear-dictionary $(FORTHSIZES) startup.fs -e "savesystem gforth.fi1 bye"
                    409:                $(FORTHK)  --clear-dictionary --offset-image $(FORTHSIZES) startup.fs -e "savesystem gforth.fi2 bye"
1.77      anton     410:                $(FORTHK) -m 100000 startup.fs  comp-image.fs -e "comp-image gforth.fi1 gforth.fi2 gforth.fi bye"
1.50      anton     411: 
1.67      anton     412: #TAGS is a GNU standard target
                    413: TAGS:          gforth.TAGS
                    414:                $(CP) gforth.TAGS $@
                    415: 
1.65      pazsan    416: gforth.TAGS:   @kernel_fi@ gforth $(GFORTH_FI_SRC) primitives.TAGS
1.66      anton     417:                $(FORTHK) etags.fs startup.fs -e bye
1.65      pazsan    418:                cat TAGS primitives.TAGS kernel.TAGS >gforth.TAGS
1.67      anton     419:                rm TAGS
1.34      anton     420: 
1.65      pazsan    421: engine.s:      engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES) config.h
1.66      anton     422:                $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -S $(srcdir)/engine.c
1.1       pazsan    423: 
1.65      pazsan    424: engine.o:      engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES) config.h
1.66      anton     425:                $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c $(srcdir)/engine.c
1.36      pazsan    426: 
1.71      anton     427: main.o:                main.c machine.h threading.h $(INCLUDES) config.h version.h
1.66      anton     428:                $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c $(srcdir)/main.c
1.9       anton     429: 
                    430: strtoul.o:     strtoul.c strtol.c
1.1       pazsan    431: 
                    432: primitives.b:  primitives
1.50      anton     433:                m4 -s $(srcdir)/primitives >$@ 
1.1       pazsan    434: 
                    435: primitives.i : primitives.b prims2x.fs
1.66      anton     436:                $(FORTHK) prims2x.fs -e "s\" primitives.b\" ' output-c process-file bye" >$@
1.1       pazsan    437: 
                    438: prim_labels.i :        primitives.b prims2x.fs
1.66      anton     439:                $(FORTHK) prims2x.fs -e "s\" primitives.b\" ' output-label process-file bye" >$@
1.1       pazsan    440: 
1.82    ! pazsan    441: aliases.fs:    primitives.b prims2x.fs aliases0.fs
        !           442:                $(CP) aliases0.fs aliases.fs
        !           443:                $(FORTHK) prims2x.fs -e "s\" primitives.b\" ' output-alias process-file bye" >>$@
1.1       pazsan    444: 
                    445: primitives.fs: primitives.b prims2x.fs
1.66      anton     446:                $(FORTHK) prims2x.fs -e "s\" primitives.b\" ' output-forth process-file bye" >$@
1.27      anton     447: 
1.50      anton     448: primitives.TAGS: primitives.b prims2x.fs
1.66      anton     449:                $(FORTHK) prims2x.fs -e "s\" $(srcdir)/primitives.b\" ' output-tag process-file bye" >$@
1.1       pazsan    450: 
1.28      pazsan    451: doc.fd:                makedoc.fs float.fs search-order.fs glocals.fs environ.fs \
1.20      anton     452:                 toolsext.fs wordinfo.fs \
                    453:                 vt100.fs colorize.fs see.fs bufio.fs debug.fs history.fs \
1.33      anton     454:                 doskey.fs vt100key.fs startup.fs assert.fs debugging.fs code.fs
1.66      anton     455:                $(FORTHK) -e "s\" doc.fd\"" makedoc.fs startup.fs code.fs -e bye
1.20      anton     456: 
1.65      pazsan    457: crossdoc.fd:   $(KERN_SRC) version.fs $(FORTH_GEN0)
1.66      anton     458:                $(FORTHK) -e 's" mach32l.fs"' main.fs -e bye
1.35      anton     459: 
1.28      pazsan    460: gforth.texi:   gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd
1.73      anton     461:                $(FORTHK) -m 100000 ds2texi.fs prims2x.fs -e "s\" $(srcdir)/primitives.b\" ' register-doc process-file" crossdoc.fd doc.fd -e "s\" $(srcdir)/gforth.ds\" r/o open-file throw ds2texi bye" >$@
1.35      anton     462: 
                    463: checkdoc:      gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd answords.fs
1.66      anton     464:                $(FORTHK) ds2texi.fs answords.fs -e bye
                    465: 
                    466: dvi:           gforth.dvi
1.1       pazsan    467: 
1.45      anton     468: gforth.dvi gforth.fns: gforth.texi
1.68      anton     469:                $(TEXI2DVI) gforth.texi
1.5       anton     470: 
                    471: gforth.ps:     gforth.dvi
1.9       anton     472:                $(DVI2PS) gforth.dvi -o $@
1.40      anton     473: 
1.66      anton     474: info:          gforth.info
                    475: 
                    476: gforth.info:   gforth.texi
1.11      anton     477:                -$(MAKEINFO) gforth.texi
1.15      anton     478: 
                    479: html:          gforth.texi
                    480:                -$(RM) html/*
                    481:                -mkdir html
1.70      pazsan    482:                cd html; $(TEXI2HTML) -menu -split_node ../gforth.texi
1.63      pazsan    483: 
                    484: doc:           gforth.ps html
1.1       pazsan    485: 
1.9       anton     486: # For an explanation of the following Makefile rules, see node
                    487: # `Automatic Remaking' in GNU Autoconf documentation.
1.69      pazsan    488: $(srcdir)/configure:   configure.in 
                    489:                cd $(srcdir) && autoconf
                    490: 
1.51      anton     491: # autoheader might not change config.h.in, so touch a stamp file.
1.69      pazsan    492: $(srcdir)/config.h.in: stamp-h.in
                    493: $(srcdir)/stamp-h.in:  configure.in  acconfig.h
                    494:                cd $(srcdir) && autoheader
                    495:                echo timestamp > $(srcdir)/stamp-h.in
1.51      anton     496: 
1.69      pazsan    497: config.h:      stamp-h
                    498: stamp-h:       config.h.in config.status
1.51      anton     499:                CONFIG_FILES=$@ CONFIG_HEADERS=config.h ./config.status
                    500:                echo > stamp-h
1.69      pazsan    501: Makefile:      Makefile.in config.status
1.51      anton     502:                CONFIG_FILES=$@ CONFIG_HEADERS=config.h ./config.status
                    503:      
1.69      pazsan    504: config.status: configure
1.51      anton     505:                ./config.status --recheck
1.30      pazsan    506: 
1.51      anton     507: 
                    508: #create files for DOS, because DOS cannot do it itself
1.30      pazsan    509: makefile.dos: mkdosmf.sed Makefile.in
                    510:        sed -f mkdosmf.sed <Makefile.in >makefile.dos
1.69      pazsan    511: 
                    512: makefile.os2: mkos2mf.sed Makefile.in
                    513:        sed -f mkos2mf.sed <Makefile.in >makefile.os2
                    514:        echo '%.o:      %.c' >>makefile.os2
                    515:        echo '          $$(GCC) $$(CFLAGS) -c $$<' >>makefile.os2
1.48      pazsan    516: 
                    517: history.dos: history.fs Makefile.in
                    518:        sed -e "s,~/\.gforth-history,/gforth.his,g" <history.fs >history.dos
1.31      pazsan    519: 
                    520: startup.dos: startup.fs Makefile.in
                    521:        sed -e "s/\\\\ include doskey/include doskey/g" \
1.43      pazsan    522:            -e "s/include vt100key/\\\\ include vt100key/g" <startup.fs >startup.dos
1.51      anton     523: 

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