Annotation of gforth/Makefile.in, revision 1.84

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

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