Diff for /gforth/Makefile.in between versions 1.62 and 1.197

version 1.62, 1996/05/23 15:13:07 version 1.197, 2001/01/28 18:49:10
Line 1 Line 1
 #Makefile for Gforth  #Makefile for Gforth
   
 #Copyright (C) 1995 Free Software Foundation, Inc.  #Copyright (C) 1995,1996,1997,1998,2000 Free Software Foundation, Inc.
   
 #This file is part of Gforth.  #This file is part of Gforth.
   
Line 16 Line 16
   
 #You should have received a copy of the GNU General Public License  #You should have received a copy of the GNU General Public License
 #along with this program; if not, write to the Free Software  #along with this program; if not, write to the Free Software
 #Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  #Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
   
 # To change the values of `make' variables: instead of editing Makefiles,  # To change the values of `make' variables: instead of editing Makefiles,
 # (1) if the variable is set in `config.status', edit `config.status'  # (1) if the variable is set in `config.status', edit `config.status'
 #     (which will cause the Makefiles to be regenerated when you run `make');  #     (which will cause the Makefiles to be regenerated when you run `make');
 # (2) otherwise, pass the desired values on the `make' command line.  # (2) otherwise, pass the desired values on the `make' command line.
   
 #To do:  # Warning:
 #use $(srcdir) to make compilation in a non-srcdir possible  # For some stupid reason setting SHELL to bash does not work properly with
   # DOS. If you want to use shell-specific things that must run with DOS make
   # an external batch file and call it with bash (see versions.bsh).
   
   # ------------- gforth version
   
   VERSION = @VERSION@
   DOSVERSION=`echo $(VERSION)|sed 's/\.//g'|sed 's/-.*//g'`
   
   # ------------- System specific variables       
   
   machine=@machine@
   kernel_fi=@kernel_fi@
   EXE=@EXE@
   
   # this is the type of machine
   # used to extend the include path with ./arch/$machine
   # so we can include a machine specific 
   # machine.h file
   
   PATHSEP = @PATHSEP@
   
   osclass = @OSCLASS@
   
   # ------------- Utility programs
   
 VERSION =0.2.0#gforth version  
 SHELL   = /bin/sh  SHELL   = /bin/sh
 RM      = rm  RM      = rm
 CP      = cp  RMTREE  = rm -rf
   CP      = cp -p
   MV      = mv
   TAR     = tar cf -
 INSTALL = @INSTALL@  INSTALL = @INSTALL@
 INSTALL_PROGRAM = @INSTALL_PROGRAM@  INSTALL_PROGRAM = @INSTALL_PROGRAM@
 INSTALL_DATA = @INSTALL_DATA@  INSTALL_DATA = @INSTALL_DATA@
 INSTALL_DIR = ./install-sh -d  
 LN_S    = @LN_S@  LN_S    = @LN_S@
 GCC     = @CC@  GCC     = @CC@
 CC      = $(GCC)  CC      = $(GCC)
 FORTH   = ./gforth  FORTHPATH = .$(PATHSEP)$(libdir)/gforth/site-forth$(PATHSEP)$(siteforthdir)$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)
 FORTHK  = $(FORTH) -i ./kernal.fi  FORTHSIZES = @FORTHSIZES@
   FORTH_ARGS = --die-on-signal -p $(FORTHPATH)$(PATHSEP)$(srcdir)
   ENGINE = ./gforth
   FORTH   = $(ENGINE) $(FORTH_ARGS)
   ENGINE_FAST = $(ENGINE)-fast
   FORTH_FAST      = $(ENGINE_FAST) $(FORTH_ARGS)
   FORTHKFLAGS= --die-on-signal -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)" -i $(kernel_fi)
   FORTHK  = $(ENGINE) $(FORTHKFLAGS)
   FORTHP  = $(ENGINE) --die-on-signal -i ./$(kernel_fi)
   #the "-2 image-included-files +!" undoes the change to image-included-files
   # in exboot.fs
   STARTUP = -e 3 exboot.fs startup.fs @asm_fs@ @disasm_fs@
 STRIP   = strip  STRIP   = strip
 TEXI2DVI = texi2dvi  TEXI2DVI = texi2dvi -e
 DVI2PS  = dvips -D300  DVI2PS  = dvips -Z
 #you can get texi2html from http://asis01.cern.ch/infohtml/texi2html.html  #you can get texi2html from http://wwwcn.cern.ch/dci/texi2html/
 TEXI2HTML = texi2html  
 MAKEINFO = makeinfo  MAKEINFO = makeinfo
   TEXI2HTML = texi2html
   
   # ------------- Compiler Flags
   
 XCFLAGS = @CFLAGS@  XCFLAGS = @CFLAGS@
 XDEFINES = @DEFS@  XDEFINES = @DEFS@
 SWITCHES = $(XCFLAGS) $(XDEFINES) #-DNDEBUG #turn off assertions  SWITCHES = $(XCFLAGS) $(XDEFINES) #-DNDEBUG #turn off assertions
 ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves  ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves
 DEBUGFLAG = @DEBUGFLAG@  DEBUGFLAG = @DEBUGFLAG@
 CFLAGS  = $(DEBUGFLAG) -O4 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(libdir)/gforth/site-forth:$(datadir)/gforth/site-forth:$(libdir)/gforth/$(VERSION):$(datadir)/gforth/$(VERSION):.\"  CFLAGS  = $(DEBUGFLAG) -I$(srcdir)/engine -I$(srcdir)/arch/$(machine) -O3 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(FORTHPATH)\"
   
 #John Wavrik should use -Xlinker -N to get a writable text (executable)  #John Wavrik should use -Xlinker -N to get a writable text (executable)
 XLDFLAGS = @LDFLAGS@  XLDFLAGS = @LDFLAGS@
 GCCLDFLAGS = @GCCLDFLAGS@  LDFLAGS =  $(DEBUGFLAG) $(XLDFLAGS)
 LDFLAGS =  $(DEBUGFLAG) $(XLDFLAGS) $(GCCLDFLAGS)  
 LDLIBS  = @LIBS@  LDLIBS  = @LIBS@
   
   # ------------  Install Directorys
   
 VPATH = @srcdir@  VPATH = @srcdir@
 prefix = @prefix@  prefix = @prefix@
 exec_prefix = @exec_prefix@  exec_prefix = @exec_prefix@
Line 72  mandir = $(prefix)/man Line 112  mandir = $(prefix)/man
 man1dir= $(mandir)/man1  man1dir= $(mandir)/man1
 man1ext= .1  man1ext= .1
 #older emacses have their site-lisp in $(libdir)/emacs/  #older emacses have their site-lisp in $(libdir)/emacs/
 emacssitelispdir=$(datadir)/emacs/site-lisp  emacssitelispdir=@lispdir@
   siteforthdir=$(datadir)/gforth/site-forth
   
   CVSDIRS = CVS engine/CVS kernel/CVS doc/CVS asm/CVS ec/CVS test/CVS \
           compat/CVS unix/CVS \
           arch/CVS arch/generic/CVS arch/m68k/CVS arch/mips/CVS \
           arch/386/CVS arch/hppa/CVS arch/sparc/CVS arch/power/CVS \
           arch/alpha/CVS arch/4stack/CVS arch/misc/CVS arch/6502/CVS \
           arch/8086/CVS arch/avr/CVS arch/c165/CVS arch/h8/CVS \
           arch/shboom/CVS arch/sharc/CVS arch/ia64/CVS
   
 INCLUDES = forth.h threading.h io.h io-dos.h config.h  INCLUDES = engine/forth.h engine/threaded.h engine/io.h
   
 KERN_SRC = \  KERN_SRC = \
         add.fs \          mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
         aliases.fs \          machpc.fs \
           kernel/aliases0.fs \
           kernel/aliases.fs \
           kernel/args.fs \
           chains.fs \
           kernel/cbr.fs \
           kernel/cloop.fs \
           kernel/cond.fs \
           kernel/cond-old.fs \
         cross.fs \          cross.fs \
         errore.fs \          kernel/errore.fs \
         extend.fs \          kernel/files.fs \
         kernal.fs \          kernel/require.fs \
         main.fs \          kernel/paths.fs \
         search-order.fs \          kernel/kernel.fs \
         tools.fs \          kernel/main.fs \
         toolsext.fs \          kernel/prim0.fs \
         vars.fs \          search.fs \
         version.fs          kernel/quotes.fs \
           kernel/tools.fs \
           kernel/toolsext.fs \
           kernel/vars.fs \
           kernel/accept.fs \
           kernel/basics.fs \
           kernel/int.fs \
           kernel/comp.fs \
           kernel/io.fs \
           kernel/input.fs \
           kernel/license.fs \
           kernel/nio.fs \
           kernel/saccept.fs \
           kernel/doers.fs \
           kernel/getdoers.fs \
           kernel/pass.fs
   
   EC_SRC = \
           asm/README \
           asm/bitmask.fs \
           asm/numref.fs \
           asm/basic.fs \
           asm/generic.fs \
           asm/target.fs \
           ec/README \
           ec/mirror.fs \
           ec/shex.fs \
           ec/builttag.fs \
           ec/dotx.fs \
           ec/nesting.fs
   
 GFORTH_FI_SRC = \  GFORTH_FI_SRC = \
         assert.fs \          assert.fs \
         blockedit.fb \          backtrac.fs \
           blocked.fb \
         blocks.fs \          blocks.fs \
         bufio.fs \          bufio.fs \
         debug.fs \          debug.fs \
         debugging.fs \          debugs.fs \
         dumpimage.fs \          ekey.fs \
           savesys.fs \
         environ.fs \          environ.fs \
           errors.fs \
           exboot.fs \
           except.fs \
           extend.fs \
         float.fs \          float.fs \
         glocals.fs \          glocals.fs \
         hash.fs \          hash.fs \
         history.fs \          history.fs \
         interpretation.fs \          intcomp.fs \
           locals.fs \
         look.fs \          look.fs \
         search-order.fs \          search.fs \
         see.fs \          see.fs \
           see-ext.fs \
         source.fs \          source.fs \
         startup.fs \          startup.fs \
         struct.fs \          struct.fs \
Line 115  GFORTH_FI_SRC = \ Line 209  GFORTH_FI_SRC = \
         termsize.fs \          termsize.fs \
         vt100.fs \          vt100.fs \
         vt100key.fs \          vt100key.fs \
         wordinfo.fs          wordinfo.fs \
           arch/386/asm.fs arch/386/disasm.fs \
 FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_SRC) \          arch/alpha/asm.fs arch/alpha/disasm.fs \
         ansi.fs answords.fs \          arch/mips/asm.fs arch/mips/disasm.fs arch/mips/insts.fs
         checkans.fs \  
         code.fs colorize.fs \  FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_SRC) $(EC_SRC) \
           ans-report.fs ansi.fs answords.fs \
           code.fs colorize.fs comp-i.fs \
         doskey.fs ds2texi.fs \          doskey.fs ds2texi.fs \
         etags.fs filedump.fs \          envos.fs envos.dos envos.os2 etags.fs filedump.fs fi2c.fs \
         glosgen.fs gray.fs \          glosgen.fs gray.fs httpd.fs proxy.fs \
         makedoc.fs \          make-app.fs doc/makedoc.fs \
         mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \  
         more.fs other.fs prims2x.fs random.fs \          more.fs other.fs prims2x.fs random.fs \
         sieve.fs \          table.fs string.fs \
         site-init.fs \  
         tt.fs sokoban.fs \          tt.fs sokoban.fs \
         wordsets.fs \          unbuffer.fs wordsets.fs \
         tester.fs coretest.fs postponetest.fs dbltest.fs \          test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs \
         bubble.fs siev.fs matrix.fs fib.fs          test/other.fs test/checkans.fs \
           bubble.fs siev.fs matrix.fs fib.fs \
 SOURCES = CVS compat Makefile.in configure.in configure config.sub config.guess \          oof.fs oofsampl.fs objects.fs objexamp.fs mini-oof.fs moof-exm.fs \
         acconfig.h config.h.in \          moofglos.fs fixpath.fs \
         install-sh INSTALL README ToDo BUGS model COPYING Benchres \          add.fs lib.fs sieve.fs unix/socket.fs
         gforth.ds texinfo.tex gforth.1 gforth.el \  
         primitives engine.c main.c io.c memcasecmp.c \  COMPAT = compat/README \
         m68k.h mips.h 386.h hppa.h cache.c sparc.h power.h alpha.h 32bit.h \          compat/anslocal.fs \
         getopt.c getopt1.c getopt.h select.c \          compat/assert.fs \
         ecvt.c memcmp.c strtol.c strtoul.c ansidecl.h memmove.c pow10.c \          compat/control.fs \
         strerror.c strsignal.c dblsub.c \          compat/defer.fs \
         INSTALL.DOS makefile.dos mkdosmf.sed configure.bat \          compat/exception.fs \
         startup.dos history.dos \          compat/loops.fs \
         glosgen.glo glossaries.doc \          compat/required.fs \
         $(INCLUDES) $(FORTH_SRC)          compat/struct.fs \
           compat/vocabulary.fs
   
   GFORTH_TEXI =  doc/gforth.texi doc/version.texi
   
   ALLSUBDIRS = engine
   
   ARCHS = \
           arch/generic/machine.h \
           arch/m68k/machine.h \
           arch/mips/machine.h \
           arch/386/machine.h \
           arch/hppa/machine.h \
           arch/hppa/cache.c \
           arch/sparc/machine.h \
           arch/power/machine.h \
           arch/power/_sync_cache_range.c \
           arch/power/elf32ppc.x \
           arch/alpha/machine.h \
           arch/ia64/machine.h \
           arch/4stack/README \
           arch/4stack/asm.fs \
           arch/4stack/mach.fs \
           arch/4stack/prim.fs \
           arch/4stack/mach.sh \
           arch/4stack/relocate.fs \
           arch/misc/README \
           arch/misc/asm.fs \
           arch/misc/mach.fs \
           arch/misc/prim.fs \
           arch/misc/sim.fs \
           arch/misc/sokoban.fs \
           arch/misc/tt.fs \
           arch/6502/asm.fs \
           arch/6502/prim.fs \
           arch/6502/mach.fs \
           arch/6502/zero.fs \
           arch/6502/softuart.fs \
           arch/6502/cold.fs \
           arch/8086/asm.fs \
           arch/8086/mach.fs \
           arch/8086/mach.sh \
           arch/8086/prim.fs \
           arch/avr/asm.fs \
           arch/c165/asm.fs \
           arch/c165/mach.fs \
           arch/c165/prim.fs \
           arch/h8/asm.fs \
           arch/shboom/asm.fs \
           arch/shboom/compiler.fs \
           arch/shboom/dis.fs \
           arch/shboom/mach.fs \
           arch/shboom/prim.fs \
           arch/shboom/dis2.fs \
           arch/shboom/sh.p \
           arch/shboom/doers.fs \
           arch/sharc/mach.fs \
           arch/sharc/machine.h \
           arch/sharc/compile.sharc \
           arch/sharc/unistd.h \
           arch/sharc/systypes.h \
           arch/sharc/types.h \
           arch/sharc/g21k-3.3.4-bp1.diff
   
   SOURCES = $(CVSDIRS) compat Makefile.in Makedist.in engine/Makefile.in gforthmi.in \
           configure.in configure config.sub config.guess elisp-comp missing \
           acconfig.h acinclude.m4 engine/config.h.in stamp-h.in \
           iss.sh install-sh INSTALL INSTALL.BINDIST NEWS README ToDo BUGS model \
           COPYING AUTHORS ChangeLog Benchres aclocal.m4 \
           doc/gforth.ds doc/texinfo.tex doc/gforth.1 doc/version.texi.in \
           gforth.el \
           prim engine/engine.c engine/main.c engine/io.c engine/memcmpc.c \
           engine/signals.c $(ARCHS) \
           engine/getopt.c engine/getopt1.c engine/getopt.h engine/select.c \
           engine/ecvt.c engine/memcmp.c engine/strtol.c engine/strtoul.c \
           engine/ansidecl.h engine/memmove.c \
           engine/pow10.c engine/atanh.c engine/cleanalign.c \
           engine/strerror.c engine/strsignal.c engine/dblsub.c \
           engine/fnmatch.h engine/fnmatch.c \
           INSTALL.DOS makefile.dos engine/makefile.dos mkdosmf.sed config.bat \
           dosconf.h gforthmi.bat mkinstalldirs siteinit.fs \
           versions.bsh \
           configure.cmd mkos2mf.sed os2conf.h makefile.os2 engine/makefile.os2 \
           gforthmi.cmd glosgen.glo doc/glossaries.doc \
           $(INCLUDES) $(FORTH_SRC) $(COMPAT) \
           timings.sc \
           test/coretest.out test/checkans.out
   
 RCS_FILES =  ToDo model high-level  RCS_FILES =  ToDo model high-level
   
 GEN = gforth version.fs  GEN = gforth$(EXE) gforth-ditc$(EXE) gforth-fast$(EXE) kernel/version.fs
   
 OBJECTS = engine.o io.o main.o memcasecmp.o @LIBOBJS@ @getopt_long@  
   
 # things that need a working forth system to be generated  # things that need a working forth system to be generated
 FORTH_GEN0 = primitives.b primitives.i prim_labels.i aliases.fs  FORTH_GEN0 = prim.b engine/prim.i engine/prim_lab.i kernel/aliases.fs kernel/prim.fs
 FORTH_GEN =  $(FORTH_GEN0) @KERNAL@ gforth.fi  FORTH_GEN =  $(FORTH_GEN0) @KERNEL@ gforth.fi
 # this is used for antidependences,  # this is used for antidependences,
 FORTH_GEN1 = $(FORTH_GEN0) @kernal_fi@   FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@ 
   
 #distributed documentation  #distributed documentation
 DOCDIST = gforth.texi gforth.fns gforth.ps gforth.info*  DOCDIST = doc/gforth.info doc/gforth.info-* doc/gforth.ps
   
 KERNLS = kernl16b.fi- kernl16l.fi- \  KERNLS = kernl16b.fi- kernl16l.fi- \
          kernl32b.fi- kernl32l.fi- \           kernl32b.fi- kernl32l.fi- \
          kernl64b.fi- kernl64l.fi-           kernl64b.fi- kernl64l.fi-
   
 GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) gforth.texi gforth.dvi gforth.ps Makefile configure  GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) doc/gforth.texi doc/gforth.dvi doc/gforth.ps Makefile Makedist engine/Makefile configure
   
 #standards.info recommends this:  #standards.info recommends this:
 .SUFFIXES:  .SUFFIXES:
 .SUFFIXES: .c .o  .SUFFIXES: .c .o
   
 all:    version.fs more  
   
 version.c:      Makefile.in  all:    kernel/version.fs more
                 echo "char gforth_version[]=\"$(VERSION)\" ;" >$@  
   # use this dependency for phony targets just as mostlyclean,...
   FORCE: ;
   
   #this rule avoids remaking everything after minor changes in Makefile.in
   version:        Makefile.in
                   if test -r $@ && test x'$(VERSION)' = x`cat $@` ; then true ; else echo $(VERSION) > $@ ; fi
   
   # With dos we use normal dos echo
   # we cannot pipe the output to engine/version.h directly because
   # of the "/ and \" problem. Copying works because we use the
   # shell und file utilities.
   
 version.fs:     Makefile.in  kernel/version.fs:      version
                 $(MAKE) gforth          $(MAKE) gforth$(EXE)
                 echo ": version-string s\" $(VERSION)\" ;" >$@          echo ": version-string s\" $(VERSION)\" ;" > kernel/version.fs
   
 more:   $(FORTH_GEN) gforth  more:   engine $(FORTH_GEN) $(GEN)
   
 #from the gcc Makefile:   #from the gcc Makefile: 
 #"Deletion of files made during compilation.  #"Deletion of files made during compilation.
Line 195  more: $(FORTH_GEN) gforth Line 383  more: $(FORTH_GEN) gforth
 # `distclean' also deletes the files made by config.  # `distclean' also deletes the files made by config.
 # `realclean' also deletes everything that could be regenerated automatically."  # `realclean' also deletes everything that could be regenerated automatically."
   
 mostlyclean:  mostlyclean:    FORCE
                 -$(RM) -rf *.s gforth.fi *.fi~ *.fi- version.fs TAGS \                  -$(RM) -rf engine/*.s gforth.fi *.fi~ *.fi- kernel/version.fs \
                 crossdoc.fd doc.fd gforth.aux gforth.cp gforth.cps \                  *TAGS gforth~ \
                 gforth.dvi gforth.fn gforth.ky gforth.log gforth.pg \                  doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
                 gforth.toc gforth.tp gforth.vr html                   doc/gforth.aux doc/gforth.cp doc/gforth.cps \
                   doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
                   doc/gforth.pg \
                   doc/gforth.toc doc/gforth.tp doc/gforth.vr html \
                   gforth-$(VERSION).tar.gz
   
   # Just the stuff needed to rebuild the documentation nac03feb1999
   docclean:       FORCE
                   -$(RM) -rf doc/crossdoc.fd doc/doc.fd doc/gforth.texi doc/gforth.fns \
                   doc/gforth.aux doc/gforth.cp doc/gforth.cps \
                   doc/gforth.dvi doc/gforth.fn doc/gforth.ky doc/gforth.log \
                   doc/gforth.pg \
                   doc/gforth.toc doc/gforth.tp doc/gforth.vr html
   
 clean:          mostlyclean  clean:          mostlyclean
                 -$(RM) -rf $(GEN) *.o                   -$(RM) -rf $(GEN) engine/gforth$(EXE) \
                   engine/gforth-fast$(EXE) engine/gforth-ditc$(EXE) \
                   *.o engine/*.o arch/*/*.o version
   
 distclean:      clean  distclean:      clean
                 -$(RM) machine.h kernal.fi config.cache config.log config.status config.h Makefile                  -$(RM) config.cache config.log config.status \
                   engine/config.h Makefile Makedist engine/Makefile \
                   stamp-h engine/stamp-h \
                   doc/version.texi gforthmi
   
 #realclean is useless, but dangerous, so it's commented out  #realclean is useless, but dangerous, so it's commented out
 #realclean:     distclean  realclean:      distclean
 #               -$(RM) $(GEN_PRECIOUS)                  -$(RM) $(GEN_PRECIOUS)
   
 #mostlyclean, but also remove some of the stuff that is distributed  #mostlyclean, but also remove some of the stuff that is distributed
 virtualclean:   mostlyclean  virtualclean:   mostlyclean
                 -$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \                  -$(RM) -rf gforth.fns gforth.texi gforth.ps gforth.info* \
                 gforth-$(VERSION).tar.gz config.cache *~ */*~                  gforth-$(VERSION).tar.gz config.cache *~ */*~
   
 dist:           $(SOURCES) $(FORTH_GEN) $(DOCDIST)  #Some makes (Ultrix, SunOS, IRIX) are so broken, they cannot read the
                 -rm -rf gforth-$(VERSION)  #Makefile if it contains our dist rules.  Therefore we have put these
                 mkdir gforth-$(VERSION)  #rules in Makedist (you can use them with GNU make on these systems).
                 $(CP) -rp $(SOURCES) $(FORTH_GEN0) @KERNAL@ $(DOCDIST) gforth-$(VERSION)  dist:           Makedist FORCE
                 tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION).tar.gz                  $(MAKE) -f Makedist d$@
                 -rm -rf gforth-$(VERSION)  
   
 #a binary distribution contains the complete source distribution,  
 # the objects, the executable and the links. the objects are there for making  
 # make happy.  
 bindist:        $(SOURCES) $(FORTH_GEN) gforth $(OBJECTS) config.status Makefile  
                 -rm -rf gforth-$(VERSION)  
                 mkdir gforth-$(VERSION)  
                 $(CP) -rp -d $(SOURCES) config.status Makefile $(FORTH_GEN) gforth $(OBJECTS) machine.h kernal.fi gforth-$(VERSION)  
                 strip gforth-$(VERSION)/gforth  
                 tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-@host@.tar.gz  
   
 #makes a package with only the stuff not present in the source  
 #package. For installation the source package is still needed!  
 #This is useful if you want to distribute many binary versions in  
 #little space (e.g., on floppy disk): Put the source package and  
 #all the binonly packages you are interested in on the disk. The user  
 #then just has to unpack the source and his favourite binonly into the  
 #same directory and has a full binary distribution.  
 binonlydist:    $(SOURCES) $(FORTH_GEN) gforth $(OBJECTS)  
                 -rm -rf gforth-$(VERSION)  
                 mkdir gforth-$(VERSION)  
                 $(CP) -p -d  config.status Makefile gforth $(OBJECTS) machine.h kernal.fi gforth-$(VERSION)  
                 strip gforth-$(VERSION)/gforth  
                 tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-binonly-@host@.tar.gz  
   
   dosdist:        Makedist FORCE
                   $(MAKE) -f Makedist d$@
   
   srcdist:        Makedist FORCE
                   $(MAKE) -f Makedist d$@
   
   srconlydist:    Makedist FORCE
                   $(MAKE) -f Makedist d$@
   
   docdist:        Makedist FORCE
                   $(MAKE) -f Makedist d$@
   
   htmldist:       Makedist FORCE
                   $(MAKE) -f Makedist d$@
   
   bindist:        Makedist FORCE
                   $(MAKE) -f Makedist d$@
   
   binonlydist:    Makedist FORCE
                   $(MAKE) -f Makedist d$@
   
   
 #strip gforth, because the debugging stuff is hardly useful once  #strip gforth, because the debugging stuff is hardly useful once
 # gforth manages to execute more than a few primitives  # gforth manages to execute more than a few primitives.
   
 install:        gforth $(FORTH_SRC) kernal.fi gforth.fi gforth.1 gforth.info* primitives gforth.TAGS  #install does not depend on gforth.info, because that would require
                 for i in $(bindir) $(mandir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(datadir)/gforth/site-forth; do \  #supplying a lot of files that can be easily generated (only info is
                         $(INSTALL_DIR) $$i; \  #hard to generate).
                 done  #we rebuild gforth.fi, because it contains some path names.
                 touch $(datadir)/gforth/site-forth/site-init.fs  #we delete $build/gforth.fi and $build/install.TAGS after installation because of ownership.
                 -$(RM) $(bindir)/gforth $(bindir)/gforth-$(VERSION)  install:        gforth$(EXE) $(FORTH_SRC) $(kernel_fi) gforth.fi gforthmi doc/gforth.1 prim install.TAGS installdirs
                 $(INSTALL_PROGRAM) -s gforth $(bindir)                  touch $(siteforthdir)/siteinit.fs
                 ln $(bindir)/gforth $(bindir)/gforth-$(VERSION)                  -$(RM) $(bindir)/gforth$(EXE) $(bindir)/gforth-$(VERSION)$(EXE) $(bindir)/gforthmi
                 $(INSTALL_DATA) gforth.1 $(mandir)                  -$(RM) $(bindir)/gforth-fast$(EXE) $(bindir)/gforth-fast-$(VERSION)$(EXE)
                 for i in gforth.info*; do $(INSTALL_DATA) $$i $(infodir); done                  $(INSTALL_PROGRAM) -s gforth$(EXE) $(bindir)/gforth-$(VERSION)$(EXE)
                 for i in $(FORTH_SRC) primitives; do \                  (cd $(bindir) && $(LN_S) gforth-$(VERSION)$(EXE) gforth$(EXE))
                         $(INSTALL_DATA) $$i $(datadir)/gforth/$(VERSION); \                  $(INSTALL_PROGRAM) -s gforth-fast$(EXE) $(bindir)/gforth-fast-$(VERSION)$(EXE)
                   (cd $(bindir) && $(LN_S) gforth-fast-$(VERSION)$(EXE) gforth-fast$(EXE))
                   $(INSTALL_PROGRAM) gforthmi $(bindir)/gforthmi-$(VERSION)
                   $(INSTALL_PROGRAM) gforth-ditc $(libdir)/gforth/$(VERSION)
                   (cd $(bindir) && $(LN_S) gforthmi-$(VERSION) gforthmi)
                   -$(INSTALL_DATA) $(srcdir)/doc/gforth.1 $(man1dir)
                   -for i in $(srcdir)/doc/gforth.info*; do $(INSTALL_DATA) $$i $(infodir); done
                   for i in $(FORTH_SRC) $(COMPAT) prim; do \
                           $(INSTALL_DATA) $(srcdir)/$$i $(datadir)/gforth/$(VERSION)/$$i; \
                 done                  done
                 $(INSTALL_DATA) kernal.fi $(libdir)/gforth/$(VERSION)                  $(INSTALL_DATA) $(kernel_fi) $(datadir)/gforth/$(VERSION)
                 $(FORTHK) startup.fs dumpimage.fs -e "savesystem $(libdir)/gforth/$(VERSION)/gforth.fi bye" #gforth.fi contains some path names                  @if test -d "$(emacssitelispdir)"; then \
                 sed s:$(srcdir)/:$(datadir)/gforth/$(VERSION): gforth.TAGS >TAGS; $(INSTALL_DATA) TAGS $(datadir)/gforth/$(VERSION)                          $(INSTALL_DATA) $(srcdir)/gforth.el $(emacssitelispdir); \
                 if test -d $(emacssitelispdir); then \  
                         $(INSTALL_DATA) gforth.el $(emacssitelispdir); \  
                 else \                  else \
                         echo "please install gforth.el in your .../emacs/site-lisp directory"; \                          echo ">>>>>Please install $(srcdir)/gforth.el in your .../emacs/site-lisp directory"; \
                 fi                  fi
                   -$(RM) gforth.fi
                   GFORTHD="./gforth-ditc -p$(libdir)/gforth/site-forth$(PATHSEP)$(siteforthdir)$(PATHSEP)$(datadir)/gforth/$(VERSION) -i $(kernel_fi)" GFORTH="./gforth-ditc --die-on-signal -i $(kernel_fi) $(STARTUP)" ./gforthmi gforth.fi $(FORTHSIZES) $(STARTUP)
                   $(INSTALL_DATA) gforth.fi $(libdir)/gforth/$(VERSION)
                   $(INSTALL_DATA) install.TAGS $(datadir)/gforth/$(VERSION)/TAGS
                   $(RM) gforth.fi install.TAGS
                   @echo ">>>>> Please make an entry for Gforth in your info dir file; e.g.:"; \
                   echo "* Gforth: (gforth).       A fast interpreter for the Forth language."
   
   install-strip:  install
   
   installdirs:    mkinstalldirs
                   for i in $(bindir) $(man1dir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(siteforthdir); do \
                           $(srcdir)/mkinstalldirs $$i; \
                   done
                   for i in $(CVSDIRS); do \
                           $(srcdir)/mkinstalldirs $(datadir)/gforth/$(VERSION)/`dirname $$i`; \
                   done
                   $(RM) -rf $(datadir)/gforth/$(VERSION)/engine
   
 #deinstall all files specific to this version of gforth  #deinstall all files specific to this version of gforth
 #to uninstall version foo, type `make uninstall VERSION=foo'  #to uninstall version foo, type `make uninstall VERSION=foo'
 uninstall:        uninstall:      FORCE
                 -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)                  -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)$(EXE) $(bindir)/gforth-fast-$(VERSION)$(EXE) $(bindir)/gforthmi-$(VERSION)
                 @echo -e "Type\n$(RM) -rf $(bindir)/gforth $(mandir)/gforth.1 $(infodir)/gforth.info* $(datadir)/gforth $(libdir)/gforth\nto remove Gforth completely"                  @echo -e "To remove Gforth completely, type\n$(RM) -rf $(bindir)/gforth$(EXE) $(bindir)/gforth-fast$(EXE) $(bindir)/gforthmi $(man1dir)/gforth.1 $(infodir)/gforth.info* $(datadir)/gforth $(libdir)/gforth"
   
 check:          test  check test:     gforth$(EXE) gforth.fi
                 touch test                  $(FORTH) test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs -e bye | diff -c - $(srcdir)/test/coretest.out
                   $(FORTH) test/other.fs -e bye
 test:           gforth gforth.fi                  $(FORTH) code.fs test/checkans.fs -e bye | diff -c - $(srcdir)/test/checkans.out
                 $(FORTH) tester.fs coretest.fs postponetest.fs dbltest.fs -e bye                  $(FORTH) -m 100000 prims2x.fs -e \
                 $(FORTH) code.fs checkans.fs -e bye                    "c-flag on s\" $(srcdir)/prim.b\" ' output-c ' output-c-combined process-file bye"| \
                 @echo 'Expect no differences'                    diff -c - $(srcdir)/engine/prim.i
                 $(FORTH) prims2x.fs -e "s\" primitives.b\" ' output-c process-file bye"| diff -c - primitives.i  
   
 bench:          gforth gforth.fi  bench:          gforth-fast$(EXE) gforth.fi
                 @echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'                  @echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
                 time $(FORTH) siev.fs -e "main bye"                  time $(FORTH_FAST) siev.fs -e "main bye"
                 time $(FORTH) bubble.fs -e "main bye"                  time $(FORTH_FAST) bubble.fs -e "main bye"
                 time $(FORTH) -m 160000 matrix.fs -e "main bye"                  time $(FORTH_FAST) -m 160000 matrix.fs -e "main bye"
                 time $(FORTH) fib.fs -e "main bye"                  time $(FORTH_FAST) fib.fs -e "main bye"
   
 dvi:            gforth.dvi  # ------------- Make forth images
   
 gforth:         $(OBJECTS)  # How to make new images:
                 -$(CP) gforth gforth~  # 1. Produce an image called kernlXYZ.fi-
                 $(GCC) $(LDFLAGS) $(OBJECTS) $(LDLIBS) -o $@  #    the original kernel.fi is not touched because it's needed for creation
                 @MAKE_EXE@  # 2. copy old kernlXYZ.fi to kernlXYZ.fi~
   #    that's a backup copy in case the new kernels don't work
 kernl16l.fi-:   $(KERN_SRC) mach16l.fs $(FORTH_GEN0)  # 3. copy new kernels to kernlXYZ.fi
                 $(FORTHK) -p . interpretation.fs -e 's" mach16l.fs"' main.fs -e "save-cross kernl16l.fi- $(bindir)/gforth-$(VERSION) bye"  #    these are the ones we want to use now
   
 kernl16b.fi-:   $(KERN_SRC) mach16b.fs $(FORTH_GEN0)  kernl16l.fi-:   $(KERN_SRC) kernel/version.fs mach16l.fs $(FORTH_GEN0)
                 $(FORTHK) -p . interpretation.fs -e 's" mach16b.fs"' main.fs -e "save-cross kernl16b.fi- $(bindir)/gforth-$(VERSION) bye"                  $(FORTHK) -e 's" mach16l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16l.fi- $(bindir)/gforth-$(VERSION) bye"
   
 kernl32l.fi-:   $(KERN_SRC) mach32l.fs $(FORTH_GEN0)  kernl16b.fi-:   $(KERN_SRC) kernel/version.fs mach16b.fs $(FORTH_GEN0)
                 $(FORTHK) -p . interpretation.fs -e 's" mach32l.fs"' main.fs -e "save-cross kernl32l.fi- $(bindir)/gforth-$(VERSION) bye"                  $(FORTHK) -e 's" mach16b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl16b.fi- $(bindir)/gforth-$(VERSION) bye"
   
 kernl32b.fi-:   $(KERN_SRC) mach32b.fs $(FORTH_GEN0)  kernl32l.fi-:   $(KERN_SRC) kernel/version.fs mach32l.fs $(FORTH_GEN0)
                 $(FORTHK) -p . interpretation.fs -e 's" mach32b.fs"' main.fs -e "save-cross kernl32b.fi- $(bindir)/gforth-$(VERSION) bye"                  $(FORTHK) -e 's" mach32l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32l.fi- $(bindir)/gforth-$(VERSION) bye"
   
 kernl64l.fi-:   $(KERN_SRC) mach64l.fs $(FORTH_GEN0)  kernl32b.fi-:   $(KERN_SRC) kernel/version.fs mach32b.fs $(FORTH_GEN0)
                 $(FORTHK) -p . interpretation.fs -e 's" mach64l.fs"' main.fs -e "save-cross kernl64l.fi- $(bindir)/gforth-$(VERSION) bye"                  $(FORTHK) -e 's" mach32b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl32b.fi- $(bindir)/gforth-$(VERSION) bye"
   
   kernl64l.fi-:   $(KERN_SRC) kernel/version.fs mach64l.fs $(FORTH_GEN0)
                   $(FORTHK) -e 's" mach64l.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64l.fi- $(bindir)/gforth-$(VERSION) bye"
   
   kernl64b.fi-:   $(KERN_SRC) kernel/version.fs mach64b.fs $(FORTH_GEN0)
                   $(FORTHK) -e 's" mach64b.fs"' $(srcdir)/kernel/main.fs -e "save-cross kernl64b.fi- $(bindir)/gforth-$(VERSION) bye"
   
   kernl-%.fi:     arch/%/mach.fs $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
                   $(FORTHK) -e 's" $<"' $(srcdir)/kernel/main.fs -e "save-cross $@- $(bindir)/gforth-$(VERSION) bye"
                   if [ -f `echo $< | sed s/fs/sh/` ]; \
                   then sh `echo $< | sed s/fs/sh/` $@; \
                   else $(CP) $@- $@; \
                   fi
   
 kernl64b.fi-:   $(KERN_SRC) mach64b.fs $(FORTH_GEN0)  #SunOS make does not like that
                 $(FORTHK) -p . interpretation.fs -e 's" mach64b.fs"' main.fs -e "save-cross kernl64b.fi- $(bindir)/gforth-$(VERSION) bye"  #arch/%/mach.fs:        arch/%/prim.fs arch/%/asm.fs
   
 kernl16b.fi:    $(KERNLS)  kernl16b.fi:    $(KERNLS)
                 -$(CP) kernl16b.fi kernl16b.fi~                  -$(CP) kernl16b.fi kernl16b.fi~
                 -$(CP) kernl16b.fi- kernl16b.fi                  -$(CP) kernl16b.fi- kernl16b.fi
                 @LINK_KERNL16B@  
   
 kernl16l.fi:    $(KERNLS)  kernl16l.fi:    $(KERNLS)
                 -$(CP) kernl16l.fi kernl16l.fi~                  -$(CP) kernl16l.fi kernl16l.fi~
                 -$(CP) kernl16l.fi- kernl16l.fi                  -$(CP) kernl16l.fi- kernl16l.fi
                 @LINK_KERNL16L@  
   
 kernl32b.fi:    $(KERNLS)  kernl32b.fi:    $(KERNLS)
                 -$(CP) kernl32b.fi kernl32b.fi~                  -$(CP) kernl32b.fi kernl32b.fi~
                 -$(CP) kernl32b.fi- kernl32b.fi                  -$(CP) kernl32b.fi- kernl32b.fi
                 @LINK_KERNL32B@  
   
 kernl32l.fi:    $(KERNLS)  kernl32l.fi:    $(KERNLS)
                 -$(CP) kernl32l.fi kernl32l.fi~                  -$(CP) kernl32l.fi kernl32l.fi~
                 -$(CP) kernl32l.fi- kernl32l.fi                  -$(CP) kernl32l.fi- kernl32l.fi
                 @LINK_KERNL32L@  
   
 kernl64b.fi:    $(KERNLS)  kernl64b.fi:    $(KERNLS)
                 -$(CP) kernl64b.fi kernl64b.fi~                  -$(CP) kernl64b.fi kernl64b.fi~
                 -$(CP) kernl64b.fi- kernl64b.fi                  -$(CP) kernl64b.fi- kernl64b.fi
                 @LINK_KERNL64B@  
   
 kernl64l.fi:    $(KERNLS)  kernl64l.fi:    $(KERNLS)
                 -$(CP) kernl64l.fi kernl64l.fi~                  -$(CP) kernl64l.fi kernl64l.fi~
                 -$(CP) kernl64l.fi- kernl64l.fi                  -$(CP) kernl64l.fi- kernl64l.fi
                 @LINK_KERNL64L@  
   
 gforth.fi:      @kernal_fi@ gforth $(GFORTH_FI_SRC)  #kernl%.fi:     kernl%.fi- $(KERNLS)
                 $(FORTHK) -p . startup.fs -e "savesystem gforth.fi bye"  #               -$(CP) $@ $@~
   #               -$(CP) $< $@
   
   gforth.fi:      $(kernel_fi) gforthmi gforth$(EXE) gforth-ditc$(EXE) $(GFORTH_FI_SRC)
                   GFORTHD="./gforth-ditc -p .$(PATHSEP)$(srcdir)" GFORTH="./gforth-ditc --die-on-signal -p .$(PATHSEP)$(srcdir) -i $(kernel_fi) $(STARTUP)" ./gforthmi gforth.fi $(FORTHSIZES) $(FORTHKFLAGS) $(STARTUP)
   
   # ------------- Make c-engine
   
   prim.b:         prim
                   m4 -s $(srcdir)/prim >$@ 
   
   engine/prim.i:          prim.b prims2x.fs
                   $(FORTH) -m 1000000 prims2x.fs -e "c-flag on s\" prim.b\" ' output-c ' output-c-combined process-file bye" >$@-
                   $(CP) $@- $@
                   $(RM) $@-
   
   engine/prim_lab.i:      prim.b prims2x.fs
                   $(FORTH) -m 1000000 prims2x.fs -e "c-flag on s\" prim.b\" ' output-label dup process-file bye" >$@-
                   $(CP) $@- $@
                   $(RM) $@-
   
 gforth.TAGS:    @kernal_fi@ gforth $(GFORTH_FI_SRC) primitives.TAGS  kernel/aliases.fs:      prim.b prims2x.fs kernel/aliases0.fs
                 $(FORTHK) -p . etags.fs startup.fs -e bye                  $(CP) kernel/aliases0.fs $@-
                 cat TAGS primitives.TAGS kernal.TAGS >gforth.TAGS                  $(FORTH) -m 1000000 prims2x.fs -e "forth-flag on s\" prim.b\" ' output-alias dup process-file bye" >>$@-
                   $(CP) $@- $@
                   $(RM) $@-
   
 engine.s:       engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES)  kernel/prim.fs: prim.b prims2x.fs kernel/prim0.fs
                 $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -S engine.c                  $(CP) kernel/prim0.fs kernel/prim.fs-
                   $(FORTH) -m 1000000 prims2x.fs -e "forth-flag on s\" prim.b\" ' output-forth ' output-forth-combined process-file bye" >>$@-
                   $(CP) $@- $@
                   $(RM) $@-
   
 engine.o:       engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES)  gforth$(EXE):           engines
                 $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c engine.c                  -$(CP) gforth$(EXE) gforth~
                   $(CP) engine/$@ $@
                   @GFORTH_EXE@
   
 main.o:         main.c machine.h threading.h $(INCLUDES)  gforth-fast$(EXE):      engines
                 $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c main.c                  $(CP) engine/$@ $@
                   @GFORTHFAST_EXE@
   
 strtoul.o:      strtoul.c strtol.c  gforth-ditc$(EXE):      engines
                   $(CP) engine/$@ $@
                   @GFORTHDITC_EXE@
   
 primitives.b:   primitives  engines:        FORCE engine/Makefile engine/prim.i engine/prim_lab.i
                 m4 -s $(srcdir)/primitives >$@                   cd engine && $(MAKE) gforth$(EXE) gforth-fast$(EXE) gforth-ditc$(EXE)
   
 primitives.i :  primitives.b prims2x.fs  # ------------- additional C primitives
                 $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-c process-file bye" >$@  
   
 prim_labels.i : primitives.b prims2x.fs  %.c:            %.pri prim2cl.fs
                 $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-label process-file bye" >$@                  $(FORTHK) prim2cl.fs -e "file $< altogether bye" >$@
   
 aliases.fs:     primitives.b prims2x.fs  %.so:           %.c
                 $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-alias process-file bye" >$@                  $(GCC) -shared $(CFLAGS) $< -o $@
   
 primitives.fs:  primitives.b prims2x.fs  # ------------- Make Documentation
                 $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-forth process-file bye" >$@  
   
 primitives.TAGS: primitives.b prims2x.fs  #TAGS is a GNU standard target
                 $(FORTHK) -p . prims2x.fs -e "s\" primitives.b\" ' output-tag process-file bye" >$@  TAGS:           gforth.TAGS
                   $(CP) gforth.TAGS $@
   
 doc.fd:         makedoc.fs float.fs search-order.fs glocals.fs environ.fs \  install.TAGS:   gforth.TAGS
                  toolsext.fs wordinfo.fs \                  sed 's:^\$(srcdir)/:$(datadir)/gforth/$(VERSION)/:' gforth.TAGS >install.TAGS
                  vt100.fs colorize.fs see.fs bufio.fs debug.fs history.fs \  
                  doskey.fs vt100key.fs startup.fs assert.fs debugging.fs code.fs  
                 $(FORTHK) -p . -e "s\" doc.fd\"" makedoc.fs startup.fs code.fs -e bye  
   
 crossdoc.fd:    $(KERN_SRC) $(FORTH_GEN0)  gforth.TAGS:    @kernel_fi@ gforth$(EXE) $(GFORTH_FI_SRC) prim.TAGS kernel.TAGS
                 $(FORTHK) -p . interpretation.fs -e 's" mach32l.fs"' main.fs                  $(FORTHK) etags.fs except.fs startup.fs -e bye
                   cat TAGS prim.TAGS kernel.TAGS >gforth.TAGS
                   rm TAGS
   
 gforth.texi:    gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd  prim.TAGS:      prim.b prims2x.fs
                 $(FORTHK) -p . ds2texi.fs -e "s\" gforth.ds\" r/o open-file throw ds2texi bye" >$@                  #echo '2c\' >prim.TAGS.sed
                   #echo $(srcdir)/prim >>prim.TAGS.sed
                   #$(FORTH) -m 1000000 prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-tag dup process-file bye" | sed -f prim.TAGS.sed >$@-
                   $(FORTH) -m 1000000 prims2x.fs -e "s\" $(srcdir)/prim.b\" ' output-tag dup process-file bye" >$@-
                   $(CP) $@- $@
                   $(RM) $@-
   
 checkdoc:       gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd answords.fs  kernel.TAGS:
                 $(FORTHK) -p . ds2texi.fs answords.fs -e bye                  rm kernl16l.fi-; $(MAKE) @kernel_fi@
   
 gforth.dvi gforth.fns:  gforth.texi  doc/doc.fd:     doc/makedoc.fs $(GFORTH_FI_SRC) code.fs objects.fs oof.fs moofglos.fs
                 $(TEXI2DVI) gforth.texi                  $(FORTHK) -e "s\" doc/doc.fd\"" doc/makedoc.fs except.fs startup.fs code.fs objects.fs oof.fs moofglos.fs -e bye
   
 gforth.ps:      gforth.dvi  doc/crossdoc.fd:        $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
                 $(DVI2PS) gforth.dvi -o $@                  $(FORTHK) -e 's" mach32l.fs"' kernel/main.fs -e bye
   
 gforth.info*:   gforth.texi  doc/gforth.texi:        doc/gforth.ds prim.b ds2texi.fs prims2x.fs \
                 -$(MAKEINFO) gforth.texi                  doc/doc.fd doc/crossdoc.fd
                   $(FORTH) -m 100000 ds2texi.fs prims2x.fs -e "s\" $(srcdir)/prim.b\" ' register-doc ' noop process-file" doc/crossdoc.fd doc/doc.fd -e "s\" $(srcdir)/doc/gforth.ds\" r/o open-file throw ds2texi bye" >$@-
                   $(CP) $@- $@
                   $(RM) $@-
   
 html:           gforth.texi  checkdoc:       doc/gforth.ds prim.b ds2texi.fs prims2x.fs doc/doc.fd doc/crossdoc.fd answords.fs doc/gforth.texi
                 -$(RM) html/*                  $(FORTH) -m 1M ds2texi.fs prims2x.fs -e "s\" $(srcdir)/prim.b\" ' register-doc ' noop process-file" doc/crossdoc.fd doc/doc.fd answords.fs -e bye
                   -grep unknown doc/gforth.texi
   
   dvi:            doc/gforth.dvi
   
   doc/gforth.dvi doc/gforth.fns:  $(GFORTH_TEXI)
                   cd doc; $(TEXI2DVI) gforth.texi
   
   doc/gforth.ps:  doc/gforth.dvi
                   $(DVI2PS) doc/gforth.dvi -o $@
   
   info:           doc/gforth.info
   
   doc/gforth.info doc/gforth.info-*: $(GFORTH_TEXI)
                   -cd doc; $(MAKEINFO) gforth.texi
   
   ### need makeinfo 4.0 to generate html. Otherwise, use texi2html..
   html:           $(GFORTH_TEXI)
                   -$(RMTREE) html
                 -mkdir html                  -mkdir html
                 cd html; $(TEXI2HTML) -menu -split_node ../gforth.texi                  cd html; $(MAKEINFO) --html -I ../doc ../doc/gforth.texi
   ###             cd html; $(TEXI2HTML) -menu -split_node ../doc/gforth.texi
   
   doc/gforth.txt: $(GFORTH_TEXI)
                   -cd doc; $(MAKEINFO) --no-headers --no-split gforth.texi >gforth.txt
   
   doc:            info html doc/gforth.ps doc/gforth.txt TAGS
   
 # For an explanation of the following Makefile rules, see node  # For an explanation of the following Makefile rules, see node
 # `Automatic Remaking' in GNU Autoconf documentation.  # `Automatic Remaking' in GNU Autoconf documentation.
 ${srcdir}/configure: configure.in   
                 cd ${srcdir} && autoconf  #Note: no target "$(srcdir)/configure", because that does not trigger 
        #unless $(srcdir)!="."
   configure:      configure.in aclocal.m4
                   cd $(srcdir) && autoconf
   
   aclocal.m4:     acinclude.m4 configure.in
                   aclocal
   
 # autoheader might not change config.h.in, so touch a stamp file.  # autoheader might not change config.h.in, so touch a stamp file.
 ${srcdir}/config.h.in: stamp-h.in  engine/config.h.in:     stamp-h.in
 ${srcdir}/stamp-h.in: configure.in  acconfig.h  stamp-h.in:     configure.in  acconfig.h
                 cd ${srcdir} && autoheader                  cd $(srcdir) && autoheader
                 echo timestamp > ${srcdir}/stamp-h.in                  echo timestamp > $(srcdir)/stamp-h.in
   
 config.h: stamp-h  engine/config.h:        stamp-h
 stamp-h: config.h.in config.status  stamp-h:        engine/config.h.in config.status
                 CONFIG_FILES=$@ CONFIG_HEADERS=config.h ./config.status                  CONFIG_FILES=$@ CONFIG_HEADERS=engine/config.h ./config.status
                 echo > stamp-h                  echo timestamp > stamp-h
 Makefile: Makefile.in config.status  
                 CONFIG_FILES=$@ CONFIG_HEADERS=config.h ./config.status  Makefile Makedist engine/Makefile gforthmi:     Makefile.in Makedist.in engine/Makefile.in gforthmi.in config.status
                        CONFIG_FILES="$@" CONFIG_HEADERS=engine/config.h ./config.status
 config.status: configure  
   config.status:  configure
                 ./config.status --recheck                  ./config.status --recheck
   
   
 #create files for DOS, because DOS cannot do it itself  #create files for DOS, because DOS cannot do it itself
 makefile.dos: mkdosmf.sed Makefile.in  makefile.dos: mkdosmf.sed Makefile.in engine/Makefile.in
         sed -f mkdosmf.sed <Makefile.in >makefile.dos          sed -f mkdosmf.sed <Makefile.in >makefile.dos
           sed -f mkdosmf.sed <engine/Makefile.in >engine/makefile.dos
   
 history.dos: history.fs Makefile.in  makefile.os2: mkos2mf.sed Makefile.in engine/Makefile.in
         sed -e "s,~/\.gforth-history,/gforth.his,g" <history.fs >history.dos          sed -f mkos2mf.sed <Makefile.in >makefile.os2
           sed -f mkos2mf.sed <engine/Makefile.in >engine/makefile.os2
 startup.dos: startup.fs Makefile.in          echo '%.o:      %.c' >>makefile.os2
         sed -e "s/\\\\ include doskey/include doskey/g" \          echo '          $$(GCC) $$(CFLAGS) -c $$<' >>makefile.os2
             -e "s/include vt100key/\\\\ include vt100key/g" <startup.fs >startup.dos          echo '%.o:      %.c' >>engine/makefile.os2
           echo '          $$(GCC) $$(CFLAGS) -c $$<' >>engine/makefile.os2

Removed from v.1.62  
changed lines
  Added in v.1.197


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