Diff for /gforth/Makefile.in between versions 1.71 and 1.72

version 1.71, 1996/10/25 17:09:43 version 1.72, 1996/10/28 17:24:31
Line 23 Line 23
 #     (which will cause the Makefiles to be regenerated when you run `make');  #     (which will cause the Makefiles to be regenerated when you run `make');
 # (2) otherwise, pass the desired values on the `make' command line.  # (2) otherwise, pass the desired values on the `make' command line.
   
 #To do:  
 #use $(srcdir) to make compilation in a non-srcdir possible  
   
 VERSION =0.2.0#gforth version  VERSION =0.2.0#gforth version
 SHELL   = /bin/sh  SHELL   = /bin/sh
 RM      = rm  RM      = rm
Line 39  GCC = @CC@ Line 36  GCC = @CC@
 CC      = $(GCC)  CC      = $(GCC)
 PATHSEP = @PATHSEP@  PATHSEP = @PATHSEP@
 FORTHPATH = $(libdir)/gforth/site-forth$(PATHSEP)$(datadir)/gforth/site-forth$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)$(PATHSEP).  FORTHPATH = $(libdir)/gforth/site-forth$(PATHSEP)$(datadir)/gforth/site-forth$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)$(PATHSEP).
   FORTHSIZES = @FORTHSIZES@
 FORTH   = ./gforth -p $(FORTHPATH)$(PATHSEP)$(srcdir)  FORTH   = ./gforth -p $(FORTHPATH)$(PATHSEP)$(srcdir)
 FORTHK  = ./gforth -p .$(PATHSEP)$(srcdir) -i ./kernel.fi  FORTHK  = ./gforth -p .$(PATHSEP)$(srcdir) -i ./kernel.fi
 FORTHP  = ./gforth -i ./kernel.fi  FORTHP  = ./gforth -i ./kernel.fi
Line 168  FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@ Line 166  FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@
 #distributed documentation  #distributed documentation
 DOCDIST = gforth.info* gforth.ps  DOCDIST = gforth.info* gforth.ps
   
   #stuff in a binonly distribution 
   BINONLYDIST = config.status Makefile gforth $(OBJECTS) \
           machine.h config.h kernel.fi stamp-h version.h version.fs \
           INSTALL.BINDIST
   
 KERNLS = kernl16b.fi- kernl16l.fi- \  KERNLS = kernl16b.fi- kernl16l.fi- \
          kernl32b.fi- kernl32l.fi- \           kernl32b.fi- kernl32l.fi- \
          kernl64b.fi- kernl64l.fi-           kernl64b.fi- kernl64l.fi-
Line 204  mostlyclean: Line 207  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-$(VERSION).tar.gz                  gforth.toc gforth.tp gforth.vr html gforth-$(VERSION).tar.gz \
                   version.h stamp-h
   
 clean:          mostlyclean  clean:          mostlyclean
                 -$(RM) -rf $(GEN) *.o                   -$(RM) -rf $(GEN) *.o 
Line 250  docdist: $(DOCDIST) Line 254  docdist: $(DOCDIST)
 #a binary distribution contains the complete source distribution,  #a binary distribution contains the complete source distribution,
 # the objects, the executable and the links. the objects are there for making  # the objects, the executable and the links. the objects are there for making
 # make happy.  # make happy.
 bindist:        $(SOURCES) $(FORTH_GEN) gforth $(OBJECTS) config.status Makefile  bindist:        $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST)
                 -rm -rf gforth-$(VERSION)                  -rm -rf gforth-$(VERSION)
                 mkdir gforth-$(VERSION)                  mkdir gforth-$(VERSION)
                 $(CP) -rp -d $(SOURCES) config.status Makefile $(FORTH_GEN) gforth $(OBJECTS) machine.h kernel.fi gforth-$(VERSION)                  $(CP) -rp -d $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST) gforth-$(VERSION)
                 strip gforth-$(VERSION)/gforth                  strip gforth-$(VERSION)/gforth
                 tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-@host@.tar.gz                  tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-@host@.tar.gz
   
Line 264  bindist: $(SOURCES) $(FORTH_GEN) gforth Line 268  bindist: $(SOURCES) $(FORTH_GEN) gforth
 #all the binonly packages you are interested in on the disk. The user  #all the binonly packages you are interested in on the disk. The user
 #then just has to unpack the source and his favourite binonly into the  #then just has to unpack the source and his favourite binonly into the
 #same directory and has a full binary distribution.  #same directory and has a full binary distribution.
 binonlydist:    $(SOURCES) $(FORTH_GEN) gforth $(OBJECTS)  binonlydist:    $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST)
                 -rm -rf gforth-$(VERSION)                  -rm -rf gforth-$(VERSION)
                 mkdir gforth-$(VERSION)                  mkdir gforth-$(VERSION)
                 $(CP) -p -d  config.status Makefile gforth $(OBJECTS) machine.h kernel.fi gforth-$(VERSION)                  $(CP) -p -d  $(BINONLYDIST) gforth-$(VERSION)
                 strip gforth-$(VERSION)/gforth                  strip gforth-$(VERSION)/gforth
                 tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-binonly-@host@.tar.gz                  tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-binonly-@host@.tar.gz
   
Line 292  install: gforth $(FORTH_SRC) kernel.fi g Line 296  install: gforth $(FORTH_SRC) kernel.fi g
                         $(INSTALL_DATA) $(srcdir)/$$i $(datadir)/gforth/$(VERSION); \                          $(INSTALL_DATA) $(srcdir)/$$i $(datadir)/gforth/$(VERSION); \
                 done                  done
                 $(INSTALL_DATA) kernel.fi $(libdir)/gforth/$(VERSION)                  $(INSTALL_DATA) kernel.fi $(libdir)/gforth/$(VERSION)
                 $(FORTHP) startup.fs -e "savesystem $(libdir)/gforth/$(VERSION)/gforth.fi bye" #gforth.fi contains some path names                  $(FORTHP) $(FORTHSIZES) startup.fs -e "savesystem $(libdir)/gforth/$(VERSION)/gforth.fi bye" #gforth.fi contains some path names
                 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); \
Line 300  install: gforth $(FORTH_SRC) kernel.fi g Line 304  install: gforth $(FORTH_SRC) kernel.fi g
                         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 ">>>>> Please make an entry for Gforth in your info dir file; e.g.:"; \
                 echo "* Gforth: (gforth).       A fast implementation of the Forth language."                  echo "* Gforth: (gforth).       A fast interpreter for the Forth language."
   
 install-strip:  install  install-strip:  install
   
Line 379  kernl64l.fi: $(KERNLS) Line 383  kernl64l.fi: $(KERNLS)
                 @LINK_KERNL64L@                  @LINK_KERNL64L@
   
 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) $(FORTHSIZES) startup.fs -e "savesystem gforth.fi bye"
   
 #TAGS is a GNU standard target  #TAGS is a GNU standard target
 TAGS:           gforth.TAGS  TAGS:           gforth.TAGS

Removed from v.1.71  
changed lines
  Added in v.1.72


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