Diff for /gforth/Makefile.in between versions 1.66 and 1.68

version 1.66, 1996/09/30 13:16:06 version 1.68, 1996/10/03 16:05:33
Line 37  INSTALL_DIR = $(srcdir)/install-sh -d Line 37  INSTALL_DIR = $(srcdir)/install-sh -d
 LN_S    = @LN_S@  LN_S    = @LN_S@
 GCC     = @CC@  GCC     = @CC@
 CC      = $(GCC)  CC      = $(GCC)
 FORTHPATH = $(libdir)/gforth/site-forth:$(datadir)/gforth/site-forth:$(libdir)/gforth/$(VERSION):$(datadir)/gforth/$(VERSION):.  PATHSEP = @PATHSEP@
 FORTH   = ./gforth -p $(FORTHPATH):$(srcdir)  FORTHPATH = $(libdir)/gforth/site-forth$(PATHSEP)$(datadir)/gforth/site-forth$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)$(PATHSEP).
 FORTHK  = $(FORTH) -p .:$(srcdir) -i ./kernel.fi  FORTH   = ./gforth -p $(FORTHPATH)$(PATHSEP)$(srcdir)
   FORTHK  = $(FORTH) -p .$(PATHSEP)$(srcdir) -i ./kernel.fi
 FORTHP  = ./gforth -i ./kernel.fi  FORTHP  = ./gforth -i ./kernel.fi
 STRIP   = strip  STRIP   = strip
 TEXI2DVI = texi2dvi  TEXI2DVI = texi2dvi
Line 164  FORTH_GEN =  $(FORTH_GEN0) @KERNEL@ gfor Line 165  FORTH_GEN =  $(FORTH_GEN0) @KERNEL@ gfor
 FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@   FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@ 
   
 #distributed documentation  #distributed documentation
 DOCDIST = gforth.ps gforth.info*  DOCDIST = gforth.info* gforth.ps
   
 KERNLS = kernl16b.fi- kernl16l.fi- \  KERNLS = kernl16b.fi- kernl16l.fi- \
          kernl32b.fi- kernl32l.fi- \           kernl32b.fi- kernl32l.fi- \
Line 202  mostlyclean: Line 203  mostlyclean:
                 -$(RM) -rf *.s gforth.fi *.fi~ *.fi- version.fs *TAGS \                  -$(RM) -rf *.s gforth.fi *.fi~ *.fi- version.fs *TAGS \
                 crossdoc.fd doc.fd gforth.texi gforth.fns gforth.aux gforth.cp gforth.cps \                  crossdoc.fd doc.fd gforth.texi gforth.fns gforth.aux gforth.cp gforth.cps \
                 gforth.dvi gforth.fn gforth.ky gforth.log gforth.pg \                  gforth.dvi gforth.fn gforth.ky gforth.log gforth.pg \
                 gforth.toc gforth.tp gforth.vr html                   gforth.toc gforth.tp gforth.vr html gforth-$(VERSION).tar.gz
   
 clean:          mostlyclean  clean:          mostlyclean
                 -$(RM) -rf $(GEN) *.o                   -$(RM) -rf $(GEN) *.o 
Line 252  binonlydist: $(SOURCES) $(FORTH_GEN) gfo Line 253  binonlydist: $(SOURCES) $(FORTH_GEN) gfo
                 tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-binonly-@host@.tar.gz                  tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-binonly-@host@.tar.gz
   
   
   
 #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) kernel.fi gforth.fi gforth.1 gforth.info primitives gforth.TAGS  #install does not depend on gforth.info, because that would require
   #supplying a lot of files that can be easily generated (only info is
   #hard to generate)
   install:        gforth $(FORTH_SRC) kernel.fi gforth.fi gforth.1 primitives gforth.TAGS
                 for i in $(bindir) $(mandir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(datadir)/gforth/site-forth; do \                  for i in $(bindir) $(mandir) $(infodir) $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(libdir)/gforth/site-forth $(datadir)/gforth/site-forth; do \
                         $(INSTALL_DIR) $$i; \                          $(INSTALL_DIR) $$i; \
                 done                  done
Line 277  install: gforth $(FORTH_SRC) kernel.fi g Line 280  install: gforth $(FORTH_SRC) kernel.fi g
                 else \                  else \
                         echo ">>>>>Please install $(srcdir)/gforth.el in your .../emacs/site-lisp directory"; \                          echo ">>>>>Please install $(srcdir)/gforth.el in your .../emacs/site-lisp directory"; \
                 fi                  fi
                   echo ">>>>> Please make an entry for Gforth in your info dir file; e.g.:"; \
                   echo "* Gforth: (gforth).       A fast implementation of the Forth language."
   
 install-strip:  install  install-strip:  install
   
Line 286  uninstall: Line 291  uninstall:
                 -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)                  -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(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 "Type\n$(RM) -rf $(bindir)/gforth $(mandir)/gforth.1 $(infodir)/gforth.info* $(datadir)/gforth $(libdir)/gforth\nto remove Gforth completely"
   
 check:          test  check test:     gforth gforth.fi
                 touch test  
   
 test:           gforth gforth.fi  
                 $(FORTH) tester.fs coretest.fs postponetest.fs dbltest.fs -e bye                  $(FORTH) tester.fs coretest.fs postponetest.fs dbltest.fs -e bye
                 $(FORTH) code.fs checkans.fs -e bye                  $(FORTH) code.fs checkans.fs -e bye
                 @echo 'Expect no differences'                  @echo 'Expect no differences'
Line 360  kernl64l.fi: $(KERNLS) Line 362  kernl64l.fi: $(KERNLS)
 gforth.fi:      @kernel_fi@ gforth $(GFORTH_FI_SRC)  gforth.fi:      @kernel_fi@ gforth $(GFORTH_FI_SRC)
                 $(FORTHK) startup.fs -e "savesystem gforth.fi bye"                  $(FORTHK) startup.fs -e "savesystem gforth.fi bye"
   
   #TAGS is a GNU standard target
   TAGS:           gforth.TAGS
                   $(CP) gforth.TAGS $@
   
 gforth.TAGS:    @kernel_fi@ gforth $(GFORTH_FI_SRC) primitives.TAGS  gforth.TAGS:    @kernel_fi@ gforth $(GFORTH_FI_SRC) primitives.TAGS
                 $(FORTHK) etags.fs startup.fs -e bye                  $(FORTHK) etags.fs startup.fs -e bye
                 cat TAGS primitives.TAGS kernel.TAGS >gforth.TAGS                  cat TAGS primitives.TAGS kernel.TAGS >gforth.TAGS
                   rm TAGS
   
 engine.s:       engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES) config.h  engine.s:       engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES) config.h
                 $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -S $(srcdir)/engine.c                  $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -S $(srcdir)/engine.c
Line 411  checkdoc: gforth.ds primitives.b ds2texi Line 418  checkdoc: gforth.ds primitives.b ds2texi
 dvi:            gforth.dvi  dvi:            gforth.dvi
   
 gforth.dvi gforth.fns:  gforth.texi  gforth.dvi gforth.fns:  gforth.texi
                 $(TEXI2DVI) $(srcdir)/gforth.texi                  $(TEXI2DVI) gforth.texi
   
 gforth.ps:      gforth.dvi  gforth.ps:      gforth.dvi
                 $(DVI2PS) gforth.dvi -o $@                  $(DVI2PS) gforth.dvi -o $@
Line 424  gforth.info: gforth.texi Line 431  gforth.info: gforth.texi
 html:           gforth.texi  html:           gforth.texi
                 -$(RM) html/*                  -$(RM) html/*
                 -mkdir html                  -mkdir html
                 cd html; $(TEXI2HTML) -menu -split_node ../gforth.texi                  cd html; $(TEXI2HTML) -menu -split_node gforth.texi
   
 doc:            gforth.ps html  doc:            gforth.ps html
   

Removed from v.1.66  
changed lines
  Added in v.1.68


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