Diff for /gforth/Makefile.in between versions 1.93 and 1.94

version 1.93, 1997/03/23 21:22:02 version 1.94, 1997/03/25 17:30:40
Line 181  FORTH_GEN =  $(FORTH_GEN0) @KERNEL@ gfor Line 181  FORTH_GEN =  $(FORTH_GEN0) @KERNEL@ gfor
 FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@   FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@ 
   
 #distributed documentation  #distributed documentation
 DOCDIST = gforth.info* gforth.ps  DOCDIST = gforth.info gforth.info-* gforth.ps
   
 #stuff in a binonly distribution   #stuff in a binonly distribution 
 BINONLYDIST = config.status Makefile gforth gforth-ditc \  BINONLYDIST = config.status Makefile gforth gforth-ditc \
Line 204  all: version.fs more Line 204  all: version.fs more
   
 #this rule avoids remaking everything after minor changes in Makefile.in  #this rule avoids remaking everything after minor changes in Makefile.in
 version-stamp:  Makefile.in  version-stamp:  Makefile.in
                 (test -r $@ && test x'$(VERSION)' = x`cat $@`) || echo $(VERSION) >$@                  if test -r $@ && test x'$(VERSION)' = x`cat $@` ; then true ; else echo $(VERSION) > $@ ; fi
   
 version.h:      version-stamp  version.h:      version-stamp
                 echo "static char gforth_version[]=\"$(VERSION)\" ;" >$@                  echo "static char gforth_version[]=\"$(VERSION)\" ;" >$@
Line 327  install: gforth $(FORTH_SRC) kernel.fi g Line 327  install: gforth $(FORTH_SRC) kernel.fi g
                 $(INSTALL_DATA) kernel.fi $(libdir)/gforth/$(VERSION)                  $(INSTALL_DATA) kernel.fi $(libdir)/gforth/$(VERSION)
                 $(RM) gforth.fi; $(MAKE) gforth.fi #gforth.fi contains some path names                  $(RM) gforth.fi; $(MAKE) gforth.fi #gforth.fi contains some path names
                 $(INSTALL_DATA) gforth.fi $(libdir)/gforth/$(VERSION)                  $(INSTALL_DATA) gforth.fi $(libdir)/gforth/$(VERSION)
                 sed s:^$(srcdir)/:$(datadir)/gforth/$(VERSION)/: gforth.TAGS >TAGS; $(INSTALL_DATA) TAGS $(datadir)/gforth/$(VERSION)                  sed 's:^$(srcdir)/:$(datadir)/gforth/$(VERSION)/:' gforth.TAGS >TAGS; $(INSTALL_DATA) TAGS $(datadir)/gforth/$(VERSION)
                 if test -d $(emacssitelispdir); then \                  if test -d $(emacssitelispdir); then \
                         $(INSTALL_DATA) $(srcdir)/gforth.el $(emacssitelispdir); \                          $(INSTALL_DATA) $(srcdir)/gforth.el $(emacssitelispdir); \
                 else \                  else \
Line 505  gforth.ps: gforth.dvi Line 505  gforth.ps: gforth.dvi
   
 info:           gforth.info  info:           gforth.info
   
 gforth.info:    gforth.texi  gforth.info gforth.info-*:      gforth.texi
                 -$(MAKEINFO) gforth.texi                  -$(MAKEINFO) gforth.texi
   
 html:           gforth.texi  html:           gforth.texi

Removed from v.1.93  
changed lines
  Added in v.1.94


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