Diff for /gforth/Makefile.in between versions 1.482 and 1.490

version 1.482, 2012/07/19 23:32:25 version 1.490, 2012/10/08 22:54:22
Line 298  FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_DIST Line 298  FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_DIST
         depth-changes.fs dosekey.fs doskey.fs ds2texi.fs \          depth-changes.fs dosekey.fs doskey.fs ds2texi.fs \
         envos.dos envos.os2 etags.fs fft.fs filedump.fs fi2c.fs \          envos.dos envos.os2 etags.fs fft.fs filedump.fs fi2c.fs \
         fsl-util.4th glosgen.fs gray.fs httpd.fs install-tags.fs \          fsl-util.4th glosgen.fs gray.fs httpd.fs install-tags.fs \
         make-app.fs doc/makedoc.fs locate.fs more.fs onebench.fs \          make-app.fs doc/makedoc.fs locate.fs more.fs onebench.fs fft-bench.fs \
         other.fs prims2x.fs prims2x0.6.2.fs proxy.fs random.fs \          other.fs prims2x.fs prims2x0.6.2.fs proxy.fs random.fs \
         regexp.fs sokoban.fs string.fs table.fs tags.fs \          regexp.fs sokoban.fs string.fs table.fs tags.fs \
         tt.fs quotations.fs \          tt.fs quotations.fs \
Line 314  FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_DIST Line 314  FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_DIST
         oof.fs oofsampl.fs objects.fs objexamp.fs mini-oof.fs moof-exm.fs \          oof.fs oofsampl.fs objects.fs objexamp.fs mini-oof.fs moof-exm.fs \
         moofglos.fs fixpath.fs \          moofglos.fs fixpath.fs \
         add.fs lib.fs oldlib.fs sieve.fs \          add.fs lib.fs oldlib.fs sieve.fs \
         endtry-iferror.fs recover-endtry.fs smartdots.fs          endtry-iferror.fs recover-endtry.fs smartdots.fs \
           unix/terminal-server.fs
   
 COMPAT = compat/README \  COMPAT = compat/README \
         compat/anslocal.fs \          compat/anslocal.fs \
Line 619  binonlydist: Makedist FORCE Line 620  binonlydist: Makedist FORCE
 debdist:        Makedist FORCE  debdist:        Makedist FORCE
                 $(MAKE) -f Makedist d$@                  $(MAKE) -f Makedist d$@
   
   setup-debdist:  Makedist FORCE
                   $(MAKE) -f Makedist d$@
   
 #HPUX make breaks the cycle differently when the dates are equal, so  #HPUX make breaks the cycle differently when the dates are equal, so
 # touch some of the files if it acts up  # touch some of the files if it acts up
 hpux-workaround:  hpux-workaround:
Line 673  install: gforth$(EXT) $(FORTH_SRC) $(ker Line 677  install: gforth$(EXT) $(FORTH_SRC) $(ker
                 $(RM) install.TAGS @NO_CROSS@gforth.fi                  $(RM) install.TAGS @NO_CROSS@gforth.fi
                 $(INSTALL_DATA) include/gforth$(ARCH)/$(VERSION)/* $(DESTDIR)$(includedir)/gforth$(ARCH)/$(VERSION)                  $(INSTALL_DATA) include/gforth$(ARCH)/$(VERSION)/* $(DESTDIR)$(includedir)/gforth$(ARCH)/$(VERSION)
                 if test -n "$(LIBTOOL)"; then for i in $(LIBCC_BUILD_SRC); do \                  if test -n "$(LIBTOOL)"; then for i in $(LIBCC_BUILD_SRC); do \
                    $(LIBTOOL) --silent --mode=install $(INSTALL) lib/gforth$(ARCH)/$(VERSION)/libcc-named/`basename $$i .fs`.la $(DESTDIR)$(libccdir)`basename $$i .fs`.la; \                     $(LIBTOOL) --silent --mode=install $(INSTALL) lib/gforth$(ARCH)/$(VERSION)/libcc-named/libgf`basename $$i .fs`.la $(DESTDIR)$(libccdir)libgf`basename $$i .fs`.la; \
                 done; fi                  done; fi
                 $(POST_INSTALL)                  $(POST_INSTALL)
                 $(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gforth.info                  $(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gforth.info
Line 742  bench:  gforth-fast$(EXT) gforth.fi Line 746  bench:  gforth-fast$(EXT) gforth.fi
                 time $(FORTH_FAST) bubble.fs -e "main bye"                  time $(FORTH_FAST) bubble.fs -e "main bye"
                 time $(FORTH_FAST) matrix.fs -e "main bye"                  time $(FORTH_FAST) matrix.fs -e "main bye"
                 time $(FORTH_FAST) fib.fs -e "main bye"                  time $(FORTH_FAST) fib.fs -e "main bye"
                   time $(FORTH_FAST) fft-bench.fs -e "main bye"
   
 onebench one-bench:  onebench one-bench:
         $(FORTH_FAST) onebench.fs          $(FORTH_FAST) onebench.fs
Line 917  libgforth$(OPT)$(EXT): $(ENGINE_SOURCES) Line 922  libgforth$(OPT)$(EXT): $(ENGINE_SOURCES)
         if test -z "$(OPT)"; then \          if test -z "$(OPT)"; then \
                 for i in $(OPTS); do $(MAKE) optlibgforth OPT=$$i && $(MAKE) optlibgforth2 OPT=$$i && $(LN_S) engine/$@ $@ && break; done; \                  for i in $(OPTS); do $(MAKE) optlibgforth OPT=$$i && $(MAKE) optlibgforth2 OPT=$$i && $(LN_S) engine/$@ $@ && break; done; \
         else \          else \
                 (cd engine && $(MAKE) $@ ) && \                  (cd engine && $(MAKE) $@ ); \
                 @NO_CROSS@ $(MAKE) checkone check-nofast ENGINE=./engine/$@; \                  @NO_CROSS@ $(MAKE) checkone check-nofast ENGINE=./engine/$@; \
         fi          fi
   
Line 931  libgforth-fast$(OPT)$(EXT): $(ENGINE_SOU Line 936  libgforth-fast$(OPT)$(EXT): $(ENGINE_SOU
         if test -z "$(OPT)"; then \          if test -z "$(OPT)"; then \
                 for i in $(OPTS); do $(MAKE) optlibgforth-fast OPT=$$i && $(MAKE) optlibgforth-fast2 OPT=$$i && $(LN_S) engine/$@ $@ && break; done; \                  for i in $(OPTS); do $(MAKE) optlibgforth-fast OPT=$$i && $(MAKE) optlibgforth-fast2 OPT=$$i && $(LN_S) engine/$@ $@ && break; done; \
         else \          else \
                 (cd engine && $(MAKE) $@ ) && \                  (cd engine && $(MAKE) $@ ); \
                 @NO_CROSS@ $(MAKE) checkone ENGINE=./engine/$@; \                  @NO_CROSS@ $(MAKE) checkone ENGINE=./engine/$@; \
         fi          fi
   
Line 1093  engine/config.h: stamp-h Line 1098  engine/config.h: stamp-h
 stamp-h: engine/config.h.in config.status stamp-h.in  stamp-h: engine/config.h.in config.status stamp-h.in
         ./config.status          ./config.status
   
 Makefile Makedist engine/Makefile gforthmi vmgen preforth machpc.fs doc/version.texi envos.fs build-ec: Makefile.in Makedist.in engine/Makefile.in gforthmi.in vmgen.in preforth.in libforth.in machpc.fs.in doc/version.texi.in config.status configure.in envos.fs.in build-ec.in engine/libcc.h.in  Makefile Makedist engine/Makefile gforthmi vmgen preforth machpc.fs doc/version.texi envos.fs build-ec gforthmi.sh:     Makefile.in Makedist.in engine/Makefile.in gforthmi.in vmgen.in preforth.in libforth.in machpc.fs.in doc/version.texi.in config.status configure.in envos.fs.in build-ec.in engine/libcc.h.in gforthmi.sh.in
         ./config.status          ./config.status
   
 config.status: configure  config.status: configure

Removed from v.1.482  
changed lines
  Added in v.1.490


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