Annotation of gforth/Makefile.in, revision 1.65

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

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