Annotation of gforth/Makefile.in, revision 1.71

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

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