Annotation of gforth/Makefile.in, revision 1.50

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.50    ! anton      29: VERSION        =0.1beta-pl1#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.48      pazsan     41: FORTHK = $(FORTH) -i ./kernal.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: 
                     61: prefix = @prefix@
                     62: exec_prefix = @exec_prefix@
                     63: srcdir = @srcdir@
                     64: bindir = $(exec_prefix)/bin
                     65: #read-only architecture-independent files
                     66: datadir = $(prefix)/share
                     67: #read-only architecture-dependent non-ascii files
                     68: libdir = $(prefix)/lib
                     69: infodir = $(prefix)/info
                     70: mandir = $(prefix)/man/man1
1.1       pazsan     71: 
                     72: 
1.38      anton      73: INCLUDES = forth.h threading.h io.h io-dos.h
1.1       pazsan     74: 
1.30      pazsan     75: KERN_SRC = main.fs search-order.fs cross.fs aliases.fs vars.fs add.fs \
                     76:        errore.fs kernal.fs version.fs extend.fs tools.fs toolsext.fs
                     77: 
1.50    ! anton      78: GFORTH_FI_SRC = startup.fs glocals.fs search-order.fs hash.fs float.fs \
        !            79:        debugging.fs environ.fs wordinfo.fs look.fs vt100.fs see.fs \
        !            80:        bufio.fs debug.fs history.fs vt100key.fs assert.fs source.fs \
        !            81:        blocks.fs struct.fs dumpimage.fs
        !            82: 
1.35      anton      83: FORTH_SRC = anslocal.fs add.fs assert.fs ansi.fs answords.fs blocks.fs bufio.fs checkans.fs \
1.33      anton      84:        code.fs colorize.fs cross.fs debug.fs debugging.fs doskey.fs ds2texi.fs \
1.6       pazsan     85:        dumpimage.fs environ.fs errore.fs etags.fs extend.fs filedump.fs \
                     86:        float.fs glocals.fs glosgen.fs gray.fs hash.fs history.fs \
1.21      anton      87:        kernal.fs locals-test.fs look.fs main.fs makedoc.fs \
1.49      anton      88:        mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
1.38      anton      89:        other.fs prims2x.fs random.fs search-order.fs see.fs sieve.fs source.fs \
1.42      anton      90:        startup.fs site-init.fs struct.fs tools.fs toolsext.fs tt.fs vars.fs \
                     91:        vt100.fs vt100key.fs wordinfo.fs wordsets.fs \
1.40      anton      92:        tester.fs coretest.fs \
                     93:        bubble.fs siev.fs matrix.fs fib.fs
1.1       pazsan     94: 
1.49      anton      95: SOURCES        = CVS Makefile.in configure.in configure config.sub  config.guess \
1.40      anton      96:        install-sh INSTALL README ToDo BUGS model COPYING Benchres \
1.28      pazsan     97:        gforth.ds texinfo.tex gforth.1 gforth.el \
1.6       pazsan     98:        primitives engine.c main.c io.c \
1.17      pazsan     99:        m68k.h mips.h 386.h hppa.h cache.c sparc.h power.h alpha.h 32bit.h \
1.14      anton     100:        getopt.c getopt1.c getopt.h select.c \
1.24      anton     101:        ecvt.c memcmp.c strtol.c strtoul.c ansidecl.h memmove.c pow10.c \
1.35      anton     102:        strerror.c strsignal.c \
1.48      pazsan    103:        INSTALL.DOS makefile.dos mkdosmf.sed configure.bat \
                    104:        startup.dos history.dos \
1.6       pazsan    105:        glosgen.glo glossaries.doc \
1.1       pazsan    106:        $(INCLUDES) $(FORTH_SRC)
                    107: 
1.5       anton     108: RCS_FILES =  ToDo model high-level
1.1       pazsan    109: 
1.48      pazsan    110: GEN = gforth version.fs
1.1       pazsan    111: 
1.9       anton     112: OBJECTS        = engine.o io.o main.o @LIBOBJS@ @getopt_long@
1.1       pazsan    113: 
                    114: # things that need a working forth system to be generated
1.15      anton     115: FORTH_GEN0 = primitives.b primitives.i prim_labels.i aliases.fs
1.34      anton     116: FORTH_GEN =  $(FORTH_GEN0) @KERNAL@ gforth.fi
1.1       pazsan    117: # this is used for antidependences,
1.34      anton     118: FORTH_GEN1 = $(FORTH_GEN0) @kernal_fi@ 
1.5       anton     119: 
1.38      anton     120: #distributed documentation
                    121: DOCDIST = gforth.texi gforth.fns gforth.ps gforth.info*
1.5       anton     122: 
1.48      pazsan    123: KERNLS = kernl16b.fi- kernl16l.fi- \
                    124:         kernl32b.fi- kernl32l.fi- \
                    125:         kernl64b.fi- kernl64l.fi-
1.30      pazsan    126: 
                    127: GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) gforth.texi gforth.dvi gforth.ps Makefile configure
1.1       pazsan    128: 
1.9       anton     129: #standards.info recommends this:
                    130: .SUFFIXES:
                    131: .SUFFIXES: .c .o
                    132: 
1.48      pazsan    133: all:   version.fs more
1.1       pazsan    134: 
1.48      pazsan    135: version.c:     Makefile.in
                    136:                echo "char gforth_version[]=\"$(VERSION)\" ;" >$@
                    137: 
                    138: version.fs:    Makefile.in
                    139:                $(MAKE) gforth
                    140:                echo ": version-string s\" $(VERSION)\" ;" >$@
1.2       pazsan    141: 
1.3       pazsan    142: more:  $(FORTH_GEN) gforth
1.2       pazsan    143: 
1.1       pazsan    144: #from the gcc Makefile: 
                    145: #"Deletion of files made during compilation.
                    146: # There are four levels of this:
                    147: #   `mostlyclean', `clean', `distclean' and `realclean'.
                    148: # `mostlyclean' is useful while working on a particular type of machine.
                    149: # It deletes most, but not all, of the files made by compilation.
                    150: # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
                    151: # `clean' deletes everything made by running `make all'.
                    152: # `distclean' also deletes the files made by config.
                    153: # `realclean' also deletes everything that could be regenerated automatically."
                    154: 
1.45      anton     155: mostlyclean:
1.48      pazsan    156:                -$(RM) -rf *.s gforth.fi *.fi~ *.fi- version.fs TAGS \
1.45      anton     157:                crossdoc.fd doc.fd gforth.aux gforth.cp gforth.cps \
                    158:                gforth.dvi gforth.fn gforth.ky gforth.log gforth.pg \
                    159:                gforth.toc gforth.tp gforth.vr html 
                    160: 
                    161: clean:         mostlyclean
                    162:                -$(RM) -rf $(GEN) *.o 
1.1       pazsan    163: 
                    164: distclean:     clean
1.44      anton     165:                -$(RM) machine.h kernal.fi config.cache config.log config.status Makefile
1.1       pazsan    166: 
                    167: realclean:     distclean
1.4       pazsan    168:                -$(RM) $(GEN_PRECIOUS)
1.1       pazsan    169: 
1.45      anton     170: #mostlyclean, but also remove some of the stuff that is distributed
                    171: virtualclean:  mostlyclean
                    172:                -$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \
1.50    ! anton     173:                gforth-$(VERSION).tar.gz config.cache *~ *TAGS
1.45      anton     174: 
1.38      anton     175: dist:          $(SOURCES) $(FORTH_GEN) $(DOCDIST)
1.21      anton     176:                -rm -rf gforth-$(VERSION)
                    177:                mkdir gforth-$(VERSION)
1.49      anton     178:                $(CP) -rp $(SOURCES) $(FORTH_GEN0) @KERNAL@ $(DOCDIST) gforth-$(VERSION)
1.21      anton     179:                tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION).tar.gz
1.30      pazsan    180:                -rm -rf gforth-$(VERSION)
1.1       pazsan    181: 
1.22      anton     182: #a binary distribution contains the complete source distribution,
                    183: # the objects, the executable and the links. the objects are there for making
                    184: # make happy.
                    185: bindist:       $(SOURCES) $(FORTH_GEN) gforth $(OBJECTS) config.status Makefile
                    186:                -rm -rf gforth-$(VERSION)
                    187:                mkdir gforth-$(VERSION)
1.49      anton     188:                $(CP) -rp -d $(SOURCES) config.status Makefile $(FORTH_GEN) gforth $(OBJECTS) machine.h kernal.fi gforth-$(VERSION)
1.22      anton     189:                strip gforth-$(VERSION)/gforth
                    190:                tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-@host@.tar.gz
                    191: 
                    192: #makes a package with only the stuff not present in the source
                    193: #package. For installation the source package is still needed!
                    194: #This is useful if you want to distribute many binary versions in
                    195: #little space (e.g., on floppy disk): Put the source package and
                    196: #all the binonly packages you are interested in on the disk. The user
                    197: #then just has to unpack the source and his favourite binonly into the
                    198: #same directory and has a full binary distribution.
                    199: binonlydist:   $(SOURCES) $(FORTH_GEN) gforth $(OBJECTS)
                    200:                -rm -rf gforth-$(VERSION)
                    201:                mkdir gforth-$(VERSION)
1.49      anton     202:                $(CP) -p -d  config.status Makefile gforth $(OBJECTS) machine.h kernal.fi gforth-$(VERSION)
1.22      anton     203:                strip gforth-$(VERSION)/gforth
                    204:                tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-binonly-@host@.tar.gz
                    205: 
                    206: 
                    207: 
1.15      anton     208: #strip gforth, because the debugging stuff is hardly useful once
                    209: # gforth manages to execute more than a few primitives
                    210: 
1.50    ! anton     211: install:       gforth $(FORTH_SRC) kernal.fi gforth.fi gforth.1 gforth.info* primitives gforth.TAGS
1.49      anton     212:                for i in $(bindir) $(mandir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(datadir)/gforth/site-forth; do \
                    213:                        $(INSTALL_DIR) $$i; \
                    214:                done
1.42      anton     215:                touch $(datadir)/gforth/site-forth/site-init.fs
1.49      anton     216:                -$(RM) $(bindir)/gforth $(bindir)/gforth-$(VERSION)
1.15      anton     217:                $(INSTALL_PROGRAM) -s gforth $(bindir)
1.49      anton     218:                ln $(bindir)/gforth $(bindir)/gforth-$(VERSION)
1.9       anton     219:                $(INSTALL_DATA) gforth.1 $(mandir)
1.49      anton     220:                for i in gforth.info*; do $(INSTALL_DATA) $$i $(infodir); done
1.50    ! anton     221:                for i in $(FORTH_SRC) primitives; do \
1.27      anton     222:                        $(INSTALL_DATA) $$i $(datadir)/gforth/$(VERSION); \
1.9       anton     223:                done
1.48      pazsan    224:                $(INSTALL_DATA) kernal.fi $(libdir)/gforth/$(VERSION)
                    225:                $(FORTHK) startup.fs dumpimage.fs -e "savesystem $(libdir)/gforth/$(VERSION)/gforth.fi bye" #gforth.fi contains some path names
1.50    ! anton     226:                sed s:$(srcdir)/:$(datadir)/gforth/$(VERSION): gforth.TAGS >TAGS; $(INSTALL_DATA) TAGS $(datadir)/gforth/$(VERSION)
1.40      anton     227: 
                    228: #deinstall all files specific to this version of gforth
                    229: #to uninstall version foo, type `make uninstall VERSION=foo'
                    230: uninstall:     
                    231:                -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)
                    232:                @echo -e "Type\n$(RM) -rf $(bindir)/gforth $(mandir)/gforth.1 $(infodir)/gforth.info* $(datadir)/gforth $(libdir)/gforth\nto remove Gforth completely"
                    233: 
1.26      anton     234: check:         test
1.30      pazsan    235:                touch test
                    236: 
1.46      anton     237: test:          gforth gforth.fi
1.21      anton     238:                $(FORTH) tester.fs coretest.fs -e bye
1.38      anton     239:                $(FORTH) code.fs checkans.fs -e bye
1.21      anton     240:                @echo 'Expect no differences'
                    241:                $(FORTH) prims2x.fs -e "s\" primitives.b\" ' output-c process-file bye"| diff -c - primitives.i
                    242: 
1.46      anton     243: bench:         gforth gforth.fi
1.40      anton     244:                @echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
                    245:                time $(FORTH) siev.fs -e "main bye"
                    246:                time $(FORTH) bubble.fs -e "main bye"
1.41      anton     247:                time $(FORTH) -m 160000 matrix.fs -e "main bye"
1.40      anton     248:                time $(FORTH) fib.fs -e "main bye"
                    249: 
1.9       anton     250: dvi:           gforth.dvi
1.5       anton     251: 
1.21      anton     252: gforth:                $(OBJECTS)
1.4       pazsan    253:                -$(CP) gforth gforth~
1.1       pazsan    254:                $(GCC) $(LDFLAGS) $(OBJECTS) $(LDLIBS) -o $@
1.9       anton     255:                @MAKE_EXE@
1.1       pazsan    256: 
1.48      pazsan    257: kernl16l.fi-:  $(KERN_SRC) mach16l.fs $(FORTH_GEN0)
1.43      pazsan    258:                $(FORTHK) -p . -e 's" mach16l.fs"' main.fs
1.13      pazsan    259: 
1.48      pazsan    260: kernl16b.fi-:  $(KERN_SRC) mach16b.fs $(FORTH_GEN0)
1.43      pazsan    261:                $(FORTHK) -p . -e 's" mach16b.fs"' main.fs
1.13      pazsan    262: 
1.48      pazsan    263: kernl32l.fi-:  $(KERN_SRC) mach32l.fs $(FORTH_GEN0)
1.43      pazsan    264:                $(FORTHK) -p . -e 's" mach32l.fs"' main.fs
1.1       pazsan    265: 
1.48      pazsan    266: kernl32b.fi-:  $(KERN_SRC) mach32b.fs $(FORTH_GEN0)
1.43      pazsan    267:                $(FORTHK) -p . -e 's" mach32b.fs"' main.fs
1.13      pazsan    268: 
1.48      pazsan    269: kernl64l.fi-:  $(KERN_SRC) mach64l.fs $(FORTH_GEN0)
1.43      pazsan    270:                $(FORTHK) -p . -e 's" mach64l.fs"' main.fs
1.13      pazsan    271: 
1.48      pazsan    272: kernl64b.fi-:  $(KERN_SRC) mach64b.fs $(FORTH_GEN0)
1.43      pazsan    273:                $(FORTHK) -p . -e 's" mach64b.fs"' main.fs
1.30      pazsan    274: 
                    275: kernl16b.fi:   $(KERNLS)
1.31      pazsan    276:                -$(CP) kernl16b.fi kernl16b.fi~
1.48      pazsan    277:                -$(CP) kernl16b.fi- kernl16b.fi
1.30      pazsan    278:                @LINK_KERNL16B@
                    279: 
                    280: kernl16l.fi:   $(KERNLS)
1.31      pazsan    281:                -$(CP) kernl16l.fi kernl16l.fi~
1.48      pazsan    282:                -$(CP) kernl16l.fi- kernl16l.fi
1.30      pazsan    283:                @LINK_KERNL16L@
                    284: 
                    285: kernl32b.fi:   $(KERNLS)
1.31      pazsan    286:                -$(CP) kernl32b.fi kernl32b.fi~
1.48      pazsan    287:                -$(CP) kernl32b.fi- kernl32b.fi
1.30      pazsan    288:                @LINK_KERNL32B@
                    289: 
                    290: kernl32l.fi:   $(KERNLS)
1.31      pazsan    291:                -$(CP) kernl32l.fi kernl32l.fi~
1.48      pazsan    292:                -$(CP) kernl32l.fi- kernl32l.fi
1.30      pazsan    293:                @LINK_KERNL32L@
                    294: 
                    295: kernl64b.fi:   $(KERNLS)
1.31      pazsan    296:                -$(CP) kernl64b.fi kernl64b.fi~
1.48      pazsan    297:                -$(CP) kernl64b.fi- kernl64b.fi
1.13      pazsan    298:                @LINK_KERNL64B@
1.1       pazsan    299: 
1.30      pazsan    300: kernl64l.fi:   $(KERNLS)
1.31      pazsan    301:                -$(CP) kernl64l.fi kernl64l.fi~
1.48      pazsan    302:                -$(CP) kernl64l.fi- kernl64l.fi
1.30      pazsan    303:                @LINK_KERNL64L@
                    304: 
1.50    ! anton     305: gforth.fi:     @kernal_fi@ gforth $(GFORTH_FI_SRC)
        !           306:                $(FORTHK) startup.fs -e "savesystem gforth.fi bye"
        !           307: 
        !           308: gforth.TAGS:   @kernal_fi@ gforth $(GFORTH_FI_SRC) primitives.TAGS
        !           309:                $(FORTHK) etags.fs startup.fs -e bye
        !           310:                cat TAGS primitives.TAGS kernal.TAGS >gforth.TAGS
1.34      anton     311: 
1.36      pazsan    312: engine.s:      engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES)
1.9       anton     313:                $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -S engine.c
1.1       pazsan    314: 
1.36      pazsan    315: engine.o:      engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES)
1.9       anton     316:                $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c engine.c
1.36      pazsan    317: 
                    318: main.o:                main.c machine.h threading.h $(INCLUDES)
                    319:                $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c main.c
1.9       anton     320: 
                    321: strtoul.o:     strtoul.c strtol.c
1.1       pazsan    322: 
                    323: primitives.b:  primitives
1.50    ! anton     324:                m4 -s $(srcdir)/primitives >$@ 
1.1       pazsan    325: 
                    326: primitives.i : primitives.b prims2x.fs
1.43      pazsan    327:                $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-c process-file bye" >$@
1.1       pazsan    328: 
                    329: prim_labels.i :        primitives.b prims2x.fs
1.43      pazsan    330:                $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-label process-file bye" >$@
1.1       pazsan    331: 
                    332: aliases.fs:    primitives.b prims2x.fs
1.43      pazsan    333:                $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-alias process-file bye" >$@
1.1       pazsan    334: 
                    335: primitives.fs: primitives.b prims2x.fs
1.43      pazsan    336:                $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-forth process-file bye" >$@
1.27      anton     337: 
1.50    ! anton     338: primitives.TAGS: primitives.b prims2x.fs
        !           339:                $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-tag process-file bye" >$@
1.1       pazsan    340: 
1.28      pazsan    341: doc.fd:                makedoc.fs float.fs search-order.fs glocals.fs environ.fs \
1.20      anton     342:                 toolsext.fs wordinfo.fs \
                    343:                 vt100.fs colorize.fs see.fs bufio.fs debug.fs history.fs \
1.33      anton     344:                 doskey.fs vt100key.fs startup.fs assert.fs debugging.fs code.fs
1.43      pazsan    345:                $(FORTHK) -p . -e "s\" doc.fd\"" makedoc.fs startup.fs code.fs -e bye
1.20      anton     346: 
1.35      anton     347: crossdoc.fd:   $(KERN_SRC) $(FORTH_GEN0)
1.43      pazsan    348:                $(FORTHK) -p . -e 's" mach32l.fs"' main.fs
1.35      anton     349: 
1.28      pazsan    350: gforth.texi:   gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd
1.43      pazsan    351:                $(FORTHK) -p . ds2texi.fs -e "s\" gforth.ds\" r/o open-file throw ds2texi bye" >$@
1.35      anton     352: 
                    353: checkdoc:      gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd answords.fs
1.43      pazsan    354:                $(FORTHK) -p . ds2texi.fs answords.fs -e bye
1.1       pazsan    355: 
1.45      anton     356: gforth.dvi gforth.fns: gforth.texi
1.9       anton     357:                $(TEXI2DVI) gforth.texi
1.5       anton     358: 
                    359: gforth.ps:     gforth.dvi
1.9       anton     360:                $(DVI2PS) gforth.dvi -o $@
1.40      anton     361: 
1.49      anton     362: gforth.info*:  gforth.texi
1.11      anton     363:                -$(MAKEINFO) gforth.texi
1.15      anton     364: 
                    365: html:          gforth.texi
                    366:                -$(RM) html/*
                    367:                -mkdir html
                    368:                cd html; $(TEXI2HTML) -menu -split_node ../gforth.texi
1.1       pazsan    369: 
1.9       anton     370: # For an explanation of the following Makefile rules, see node
                    371: # `Automatic Remaking' in GNU Autoconf documentation.
                    372: Makefile: Makefile.in config.status
1.48      pazsan    373:        CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
1.9       anton     374: config.status: configure
1.48      pazsan    375:        ./config.status --recheck
1.9       anton     376: configure: configure.in
                    377:        cd $(srcdir) && autoconf
1.30      pazsan    378: 
                    379: makefile.dos: mkdosmf.sed Makefile.in
                    380:        sed -f mkdosmf.sed <Makefile.in >makefile.dos
1.48      pazsan    381: 
                    382: history.dos: history.fs Makefile.in
                    383:        sed -e "s,~/\.gforth-history,/gforth.his,g" <history.fs >history.dos
1.31      pazsan    384: 
                    385: startup.dos: startup.fs Makefile.in
                    386:        sed -e "s/\\\\ include doskey/include doskey/g" \
1.43      pazsan    387:            -e "s/include vt100key/\\\\ include vt100key/g" <startup.fs >startup.dos

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