Annotation of gforth/makefile.dos, revision 1.9

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

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