Diff for /gforth/Makefile.in between versions 1.456 and 1.461

version 1.456, 2011/01/09 15:29:14 version 1.461, 2011/11/13 00:45:20
Line 47  PATHSEP = @PATHSEP@ Line 47  PATHSEP = @PATHSEP@
   
 EC = @EC@  EC = @EC@
   
   # ------------  Install Directories
   
   VPATH = @srcdir@
   prefix = @prefix@
   exec_prefix = @exec_prefix@
   srcdir = @srcdir@
   bindir = @bindir@
   #read-only architecture-independent files
   datarootdir = @datarootdir@
   datadir = @datadir@
   #read-only architecture-dependent non-ascii files
   libdir = @libdir@
   libccdir = $(subst $(DESTDIR),,$(libdir)/gforth/$(VERSION)/libcc-named/)
   includedir = @includedir@
   infodir = @infodir@
   htmldir = @htmldir@
   mandir = @mandir@
   man1dir= $(mandir)/man1
   man1ext= .1
   #older emacses have their site-lisp in $(libdir)/emacs/
   emacssitelispdir=@lispdir@
   siteforthdir=$(datadir)/gforth/site-forth
   
 # ------------- Utility programs  # ------------- Utility programs
   
 SHELL   = /bin/sh  SHELL   = /bin/sh
Line 117  LDLIBS = @LIBS@ Line 140  LDLIBS = @LIBS@
 STACK_CACHE_REGS = @STACK_CACHE_REGS@  STACK_CACHE_REGS = @STACK_CACHE_REGS@
 STACK_CACHE_DEFAULT_FAST = @STACK_CACHE_DEFAULT_FAST@  STACK_CACHE_DEFAULT_FAST = @STACK_CACHE_DEFAULT_FAST@
   
 # ------------  Install Directories  
   
 VPATH = @srcdir@  
 prefix = @prefix@  
 exec_prefix = @exec_prefix@  
 srcdir = @srcdir@  
 bindir = @bindir@  
 #read-only architecture-independent files  
 datarootdir = @datarootdir@  
 datadir = @datadir@  
 #read-only architecture-dependent non-ascii files  
 libdir = @libdir@  
 libccdir = $(subst $(DESTDIR),,$(libdir)/gforth/$(VERSION)/libcc-named/)  
 includedir = @includedir@  
 infodir = @infodir@  
 htmldir = @htmldir@  
 mandir = @mandir@  
 man1dir= $(mandir)/man1  
 man1ext= .1  
 #older emacses have their site-lisp in $(libdir)/emacs/  
 emacssitelispdir=@lispdir@  
 siteforthdir=$(datadir)/gforth/site-forth  
   
 PROFOBJS = @PROFOBJS@  PROFOBJS = @PROFOBJS@
 PROFEXES = @PROFEXES@  PROFEXES = @PROFEXES@
   
Line 181  KERN_SRC = \ Line 181  KERN_SRC = \
         kernel/basics.fs \          kernel/basics.fs \
         kernel/int.fs \          kernel/int.fs \
         kernel/comp.fs \          kernel/comp.fs \
           kernel/recognizer.fs \
         kernel/io.fs \          kernel/io.fs \
         kernel/input.fs \          kernel/input.fs \
         kernel/license.fs \          kernel/license.fs \
Line 245  GFORTH_FI_SRC2=\ Line 246  GFORTH_FI_SRC2=\
         simp-see.fs \          simp-see.fs \
         source.fs \          source.fs \
         startup.fs \          startup.fs \
           str-exec.fs \
         struct.fs \          struct.fs \
         struct0x.fs \          struct0x.fs \
         stuff.fs \          stuff.fs \
Line 690  check:  gforths gforth.fi Line 692  check:  gforths gforth.fi
                 ./gforth-fast --diag -e bye                  ./gforth-fast --diag -e bye
   
 checkone test: gforth.fi engine/prim-s.i  checkone test: gforth.fi engine/prim-s.i
                 $(FORTH) test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs test/string.fs test/float.fs test/deferred.fs test/coreext.fs test/search.fs -e bye 2>&1 | tr -d '\015' | diff -c - $(srcdir)/test/coretest.out                  $(FORTH) test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs test/string.fs test/float.fs test/deferred.fs test/coreext.fs test/search.fs -e bye 2>/dev/null | tr -d '\015' | diff -c - $(srcdir)/test/coretest.out
                 $(FORTH) test/other.fs -e bye                  $(FORTH) test/other.fs -e bye
                 $(FORTHS) test/signals.fs -e bye                  $(FORTHS) test/signals.fs -e bye
                 $(FORTHS) test/coremore.fs test/gforth.fs test/macros.fs -e bye 2>&1 | tr -d '\015' | diff -c - $(srcdir)/test/gforth.out                  $(FORTHS) test/coremore.fs test/gforth.fs test/macros.fs -e bye 2>&1 | tr -d '\015' | diff -c - $(srcdir)/test/gforth.out

Removed from v.1.456  
changed lines
  Added in v.1.461


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