Annotation of gforth/Makefile.in, revision 1.73

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

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