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

version 1.456, 2011/01/09 15:29:14 version 1.462, 2011/11/15 12:56:28
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 464  FORTH_GEN_ENGINE_FAST= \ Line 466  FORTH_GEN_ENGINE_FAST= \
         engine/costs-fast.i engine/super2-fast.i          engine/costs-fast.i engine/super2-fast.i
 FORTH_GEN_PRIMB = $(FORTH_GEN_ENGINE) kernel/aliases.fs kernel/prim.fs  FORTH_GEN_PRIMB = $(FORTH_GEN_ENGINE) kernel/aliases.fs kernel/prim.fs
 FORTH_GEN0 = prim.b $(FORTH_GEN_PRIMB)  FORTH_GEN0 = prim.b $(FORTH_GEN_PRIMB)
 FORTH_GEN =  $(FORTH_GEN0) @KERNEL@ @NO_EC@ gforth.fi  FORTH_GEN =  $(FORTH_GEN0) @KERNEL@ @NO_CROSS@ gforth.fi
 # this is used for antidependences,  # this is used for antidependences,
 FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@ build-ec  FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@ build-ec
   
Line 493  GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) \ Line 495  GEN_PRECIOUS = $(FORTH_GEN) $(KERNLS) \
 .SUFFIXES:  .SUFFIXES:
 .SUFFIXES: .c .o  .SUFFIXES: .c .o
   
 all: kernel/version.fs more @NO_EC@ check  all: kernel/version.fs more @NO_CROSS@ check
   
 # use this dependency for phony targets just as mostlyclean,...  # use this dependency for phony targets just as mostlyclean,...
 FORCE: ;  FORCE: ;
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
Line 843  gforth$(OPT)$(EC)$(EXE): $(ENGINE_SOURCE Line 845  gforth$(OPT)$(EC)$(EXE): $(ENGINE_SOURCE
                 $(CP) engine/$@ $@ && \                  $(CP) engine/$@ $@ && \
                 $(MASSAGE_EXE) $@; \                  $(MASSAGE_EXE) $@; \
                 @GFORTH_EXE@; \                  @GFORTH_EXE@; \
                 @NO_EC@ $(MAKE) checkone check-nofast ENGINE=./engine/$@; \                  @NO_CROSS@ $(MAKE) checkone check-nofast ENGINE=./engine/$@; \
         fi          fi
   
 optgforth:  optgforth:
Line 857  gforth-fast$(OPT)$(EC)$(EXE): $(ENGINE_S Line 859  gforth-fast$(OPT)$(EC)$(EXE): $(ENGINE_S
                 $(CP) engine/$@ $@ && \                  $(CP) engine/$@ $@ && \
                 $(MASSAGE_EXE) $@; \                  $(MASSAGE_EXE) $@; \
                 @GFORTHFAST_EXE@; \                  @GFORTHFAST_EXE@; \
                 @NO_EC@ $(MAKE) checkone ENGINE=./engine/$@; \                  @NO_CROSS@ $(MAKE) checkone ENGINE=./engine/$@; \
         fi          fi
   
 optgforth-fast:  optgforth-fast:

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


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