Diff for /gforth/Makefile.in between versions 1.73 and 1.74

version 1.73, 1996/10/31 17:41:15 version 1.74, 1996/11/04 22:58:43
Line 24 Line 24
 # (2) otherwise, pass the desired values on the `make' command line.  # (2) otherwise, pass the desired values on the `make' command line.
   
 VERSION =0.2.0#gforth version  VERSION =0.2.0#gforth version
   DOSVERSION=020#gforth version
 SHELL   = /bin/sh  SHELL   = /bin/sh
 RM      = rm  RM      = rm
   RMTREE  = rm -rf
 CP      = cp  CP      = cp
   TAR     = tar cf -
 INSTALL = @INSTALL@  INSTALL = @INSTALL@
 INSTALL_PROGRAM = @INSTALL_PROGRAM@  INSTALL_PROGRAM = @INSTALL_PROGRAM@
 INSTALL_DATA = @INSTALL_DATA@  INSTALL_DATA = @INSTALL_DATA@
Line 147  SOURCES = CVS compat Makefile.in configu Line 150  SOURCES = CVS compat Makefile.in configu
         strerror.c strsignal.c dblsub.c \          strerror.c strsignal.c dblsub.c \
         INSTALL.DOS makefile.dos mkdosmf.sed configure.bat dosconf.h \          INSTALL.DOS makefile.dos mkdosmf.sed configure.bat dosconf.h \
         startup.dos history.dos \          startup.dos history.dos \
         os2conf.h makefile.os2 \          configure.cmd mkos2mf.sed os2conf.h makefile.os2 \
         glosgen.glo glossaries.doc \          glosgen.glo glossaries.doc \
         $(INCLUDES) $(FORTH_SRC)          $(INCLUDES) $(FORTH_SRC)
   
Line 228  virtualclean: mostlyclean Line 231  virtualclean: mostlyclean
   
 #use dist targets only when srcdir=.  #use dist targets only when srcdir=.
 dist:           $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST)  dist:           $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST)
                 -rm -rf gforth-$(VERSION)                  -$(RMTREE) gforth-$(VERSION)
                 mkdir gforth-$(VERSION)                  mkdir gforth-$(VERSION)
                 $(CP) -rp $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) gforth-$(VERSION)                  $(CP) -rp $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) gforth-$(VERSION)
                 tar cvf - gforth-$(VERSION)|gzip -9 >gforth-$(VERSION).tar.gz                  $(TAR) gforth-$(VERSION)|gzip -9 >gforth-$(VERSION).tar.gz
                 -rm -rf gforth-$(VERSION)                  -$(RMTREE) gforth-$(VERSION)
   
   #use dist targets only when srcdir=.
   dosdist:        $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST)
                   -$(RMTREE) gforth.$(DOSVERSION)
                   mkdir gforth.$(DOSVERSION)
                   $(CP) -rp $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) gforth.$(DOSVERSION)
                   zip -r9 gforth.zip gforth.$(DOSVERSION)/*
                   -$(RMTREE) gforth.$(DOSVERSION)
   
 #A source distribution contains only the things needed to install gforth,  #A source distribution contains only the things needed to install gforth,
 #without the documents.  #without the documents.
 srcdist:        $(SOURCES) $(FORTH_GEN0) @KERNEL@  srcdist:        $(SOURCES) $(FORTH_GEN0) @KERNEL@
                 -rm -rf gforth-$(VERSION)                  -$(RMTREE) gforth-$(VERSION)
                 mkdir gforth-$(VERSION)                  mkdir gforth-$(VERSION)
                 $(CP) -rp $(SOURCES) $(FORTH_GEN0) @KERNEL@ gforth-$(VERSION)                  $(CP) -rp $(SOURCES) $(FORTH_GEN0) @KERNEL@ gforth-$(VERSION)
                 tar cvf - gforth-$(VERSION)|gzip -9 >gforth-src-$(VERSION).tar.gz                  $(TAR) gforth-$(VERSION)|gzip -9 >gforth-src-$(VERSION).tar.gz
                 -rm -rf gforth-$(VERSION)                  -$(RMTREE) gforth-$(VERSION)
   
 #A document distribution contains only the documents, which can be created  #A document distribution contains only the documents, which can be created
 #with MAKE.  #with MAKE.
 docdist:        $(DOCDIST)  docdist:        $(DOCDIST)
                 -rm -rf gforth-$(VERSION)                  -$(RMTREE) gforth-$(VERSION)
                 mkdir gforth-$(VERSION)                  mkdir gforth-$(VERSION)
                 $(CP) -rp $(DOCDIST) gforth-$(VERSION)                  $(CP) -rp $(DOCDIST) gforth-$(VERSION)
                 tar cvf - gforth-$(VERSION)|gzip -9 >gforth-doc-$(VERSION).tar.gz                  $(TAR) gforth-$(VERSION)|gzip -9 >gforth-doc-$(VERSION).tar.gz
                 -rm -rf gforth-$(VERSION)                  -$(RMTREE) gforth-$(VERSION)
   
 #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_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST)  bindist:        $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST)
                 -rm -rf gforth-$(VERSION)                  -$(RMTREE) gforth-$(VERSION)
                 mkdir gforth-$(VERSION)                  mkdir gforth-$(VERSION)
                 $(CP) -rp -d $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST) 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) gforth-$(VERSION)|gzip -9 >gforth-$(VERSION)-@host@.tar.gz
   
 #makes a package with only the stuff not present in the source  #makes a package with only the stuff not present in the source
 #package. For installation the source package is still needed!  #package. For installation the source package is still needed!
Line 270  bindist: $(SOURCES) $(FORTH_GEN0) @KERNE Line 281  bindist: $(SOURCES) $(FORTH_GEN0) @KERNE
 #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_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST)  binonlydist:    $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) $(BINONLYDIST)
                 -rm -rf gforth-$(VERSION)                  -$(RMTREE) gforth-$(VERSION)
                 mkdir gforth-$(VERSION)                  mkdir gforth-$(VERSION)
                 $(CP) -p -d  $(BINONLYDIST) 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) 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

Removed from v.1.73  
changed lines
  Added in v.1.74


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