gzz-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gzz-commits] gzz Makefile


From: Tuukka Hastrup
Subject: [Gzz-commits] gzz Makefile
Date: Tue, 27 Aug 2002 17:42:59 -0400

CVSROOT:        /cvsroot/gzz
Module name:    gzz
Changes by:     Tuukka Hastrup <address@hidden> 02/08/27 17:42:59

Modified files:
        .              : Makefile 

Log message:
        Target 'clean' now removes all files listed in .cvsignore's. Target 
'dist' produces gzz-VERSION.tar.gz, needs polishing

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/Makefile.diff?tr1=1.144&tr2=1.145&r1=text&r2=text

Patches:
Index: gzz/Makefile
diff -c gzz/Makefile:1.144 gzz/Makefile:1.145
*** gzz/Makefile:1.144  Mon Aug 26 15:07:15 2002
--- gzz/Makefile        Tue Aug 27 17:42:59 2002
***************
*** 1,3 ****
--- 1,4 ----
+ 
  # all must compile everywhere
  all: compile batchtest
  alltests: batchtest batchtest-junit slow test-
***************
*** 15,31 ****
  VERSION=snapshot-`date -u +%Y%m%d`
  TAG="Unofficial"
  
! dist : DISTDIR=gzigzag-$(VERSION)
! dist : dist.tgz dist.zip
  
- dist.tgz : distdir
        tar cf $(DISTDIR).tar $(DISTDIR)
        gzip -9vf $(DISTDIR).tar
  
! dist.zip : distdir
!       zip -r9 $(DISTDIR).zip $(DISTDIR)
  
! release : DISTDIR=gzigzag-$(VERSION)
  release : Z_DIR=$(CURDIR)/Z
  release :
        $(MAKE) dist
--- 16,39 ----
  VERSION=snapshot-`date -u +%Y%m%d`
  TAG="Unofficial"
  
! NOTEST=true
! dist: DISTDIR=gzz-$(VERSION)
! dist: 
!       rm -Rf $(DISTDIR)
!       mkdir $(DISTDIR)
!       $(NOTEST) || $(MAKE) batchtest slow     
!       $(MAKE) clean 
!       $(MAKE) ready_to_compile doc
!       find . ! -type d|egrep -v 
'(^./(basalt|lava|C\+\+|Perl|Java|Modules))|/CVS/|#|~|\$$py\.class$$'|grep -vF 
"./$(DISTDIR)/"|xargs --replace cp --parents {} $(DISTDIR)
!       echo $(VERSION) >$(DISTDIR)/VERSION
  
        tar cf $(DISTDIR).tar $(DISTDIR)
        gzip -9vf $(DISTDIR).tar
  
!       rm -Rf $(DISTDIR)
! 
  
! release : DISTDIR=gzz-$(VERSION)
  release : Z_DIR=$(CURDIR)/Z
  release :
        $(MAKE) dist
***************
*** 99,108 ****
        rm -rf $(grbdir)
  
  
- DISTDIR=gzigzag-dist
- distdir:
-       ./makedist.sh $(DISTDIR)
- 
  CVS2CL=cvs2cl
  
  CVS_RSH=ssh
--- 107,112 ----
***************
*** 358,368 ****
        $(RM) $(GENERATED)
        $(RM) gzz-independent.jar
        $(RM) -r independent/
!       mkdir -p $(CLASSDIR)
  
  NOTEST=true
  jar: jardir=$(JARNAME).build
  jar : 
        mkdir $(jardir)
        $(MAKE) ARCH="$(JARARCHES)" MODULES="$(JARMODULES)" compile
        $(NOTEST) || $(MAKE) ARCH="$(JARARCHES)" MODULES="$(JARMODULES)" 
batchtest slow
--- 362,375 ----
        $(RM) $(GENERATED)
        $(RM) gzz-independent.jar
        $(RM) -r independent/
!       @echo "Removing everything found in .cvsignore's"
!       find . -name ".cvsignore"|while read ign; do (cd `dirname $$ign` && cat 
.cvsignore|while read files; do rm -Rf "$$files"; done); done
! 
  
  NOTEST=true
  jar: jardir=$(JARNAME).build
  jar : 
+       rm -Rf $(jardir)
        mkdir $(jardir)
        $(MAKE) ARCH="$(JARARCHES)" MODULES="$(JARMODULES)" compile
        $(NOTEST) || $(MAKE) ARCH="$(JARARCHES)" MODULES="$(JARMODULES)" 
batchtest slow




reply via email to

[Prev in Thread] Current Thread [Next in Thread]