Diff for /gforth/Makefile.in between versions 1.128 and 1.129

version 1.128, 1998/12/11 23:03:39 version 1.129, 1998/12/12 22:32:03
Line 31 Line 31
 # ------------- gforth version  # ------------- gforth version
   
 VERSION = @VERSION@  VERSION = @VERSION@
 DOSVERSION=`echo $VERSION|sed 's/\.//g'`  DOSVERSION=`echo $(VERSION)|sed 's/\.//g'`
   
 # ------------- System specific variables         # ------------- System specific variables       
   
Line 54  SHELL = /bin/sh Line 54  SHELL = /bin/sh
 RM      = rm  RM      = rm
 RMTREE  = rm -rf  RMTREE  = rm -rf
 CP      = cp  CP      = cp
   MV      = mv
 TAR     = tar cf -  TAR     = tar cf -
 INSTALL = @INSTALL@  INSTALL = @INSTALL@
 INSTALL_PROGRAM = @INSTALL_PROGRAM@  INSTALL_PROGRAM = @INSTALL_PROGRAM@
Line 338  version: Makefile.in Line 339  version: Makefile.in
   
 kernel/version.fs:      version  kernel/version.fs:      version
         $(MAKE) gforth$(EXE)          $(MAKE) gforth$(EXE)
         $(SHELL) versions.bsh $(VERSION)          echo ": version-string s\" $(VERSION)\" ;" > kernel/version.fs
   
 more:   engine $(FORTH_GEN) gforth$(EXE)  more:   engine $(FORTH_GEN) gforth$(EXE)
   
Line 397  dosdist: $(SOURCES) $(FORTH_GEN0) @KERNE Line 398  dosdist: $(SOURCES) $(FORTH_GEN0) @KERNE
                 mkdir gforth.$(DOSVERSION)                  mkdir gforth.$(DOSVERSION)
                 $(TAR) $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) | \                  $(TAR) $(SOURCES) $(FORTH_GEN0) @KERNEL@ $(DOCDIST) | \
                         (cd gforth.$(DOSVERSION); tar xf -)                          (cd gforth.$(DOSVERSION); tar xf -)
                   $(MV) gforth.$(DOSVERSION)/engine/strsignal.c gforth.$(DOSVERSION)/engine/strsig.c
                   for i in 1 2 3 4 5 6 7 8; do \
                           $(MV) gforth.$(DOSVERSION)/doc/gforth.info-$$i gforth.$(DOSVERSION)/doc/gforth.i$$i; \
                   done
                 zip -r9 gf$(DOSVERSION)dos.zip gforth.$(DOSVERSION)/*                  zip -r9 gf$(DOSVERSION)dos.zip gforth.$(DOSVERSION)/*
                 -$(RMTREE) gforth.$(DOSVERSION)                  -$(RMTREE) gforth.$(DOSVERSION)
   

Removed from v.1.128  
changed lines
  Added in v.1.129


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