Diff for /gforth/Makefile.in between versions 1.206 and 1.208

version 1.206, 2001/05/01 13:35:41 version 1.208, 2001/05/09 16:22:41
Line 68  FORTH_ARGS = --die-on-signal -p $(FORTHP Line 68  FORTH_ARGS = --die-on-signal -p $(FORTHP
 ENGINE = ./gforth  ENGINE = ./gforth
 FORTH   = $(ENGINE) $(FORTH_ARGS)  FORTH   = $(ENGINE) $(FORTH_ARGS)
 # the (existing) forth system to use for cross compiling and primitives tables  # the (existing) forth system to use for cross compiling and primitives tables
 BUILDFORTH = $(FORTHK)  # per default we use the one in this directory for a rebuild. It is also
   # possible to override this variable at the command line for an initial build (jaw)
   BUILDFORTH = $(ENGINE) --die-on-signal -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)" -i $(kernel_fi)
 # the forth system plus flags we use to build  # the forth system plus flags we use to build
 FORTHB = $(BUILDFORTH) -m 1000000 -e 'fpath= .|~+|$(srcdir)'  FORTHB = $(BUILDFORTH) -m 1000000 -e 'fpath= .|~+|$(srcdir)'
 # the Forth system for running prims2x.fs  # the Forth system for running prims2x.fs
Line 207  GFORTH_FI_SRC = \ Line 209  GFORTH_FI_SRC = \
         search.fs \          search.fs \
         see.fs \          see.fs \
         see-ext.fs \          see-ext.fs \
           simp-see.fs \
         source.fs \          source.fs \
         startup.fs \          startup.fs \
         struct.fs \          struct.fs \
Line 326  SOURCES = $(CVSDIRS) compat Makefile.in Line 329  SOURCES = $(CVSDIRS) compat Makefile.in
         COPYING AUTHORS ChangeLog Benchres aclocal.m4 \          COPYING AUTHORS ChangeLog Benchres aclocal.m4 \
         doc/gforth.ds doc/texinfo.tex doc/gforth.1 doc/version.texi.in \          doc/gforth.ds doc/texinfo.tex doc/gforth.1 doc/version.texi.in \
         gforth.el \          gforth.el \
         prim peeprules.vmg engine/engine.c engine/main.c          prim peeprules.vmg engine/engine.c engine/main.c \
         engine/io.c engine/memcmpc.c engine/signals.c $(ARCHS) \          engine/io.c engine/memcmpc.c engine/signals.c $(ARCHS) \
           engine/peephole.c engine/profile.c \
         engine/getopt.c engine/getopt1.c engine/getopt.h engine/select.c \          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/ecvt.c engine/memcmp.c engine/strtol.c engine/strtoul.c \
         engine/ansidecl.h engine/memmove.c \          engine/ansidecl.h engine/memmove.c \
Line 373  all: kernel/version.fs more Line 377  all: kernel/version.fs more
 FORCE: ;  FORCE: ;
   
 #this rule avoids remaking everything after minor changes in Makefile.in  #this rule avoids remaking everything after minor changes in Makefile.in
 version:        Makefile.in  version:        Makefile.in configure.in
                 if test -r $@ && test x'$(VERSION)' = x`cat $@` ; then true ; else echo $(VERSION) > $@ ; fi                  if test -r $@ && test x'$(VERSION)' = x`cat $@` ; then true ; else echo $(VERSION) > $@ ; fi
   
 # With dos we use normal dos echo  # With dos we use normal dos echo

Removed from v.1.206  
changed lines
  Added in v.1.208


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