Annotation of gforth/Makefile.in, revision 1.96

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

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