[Python-checkins] CVS: python/dist/src/Doc Makefile,1.190,1.191
Fred Drake
python-dev@python.org
Tue, 4 Apr 2000 16:58:28 -0400
Update of /projects/cvsroot/python/dist/src/Doc
In directory seahag.cnri.reston.va.us:/home/fdrake/projects/python/Doc
Modified Files:
Makefile
Log Message:
Merged in changes from 1.5.2p2 release as appropriate.
Index: Makefile
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Doc/Makefile,v
retrieving revision 1.190
retrieving revision 1.191
diff -C2 -r1.190 -r1.191
*** Makefile 1999年08月02日 20:20:14 1.190
--- Makefile 2000年04月04日 20:58:25 1.191
***************
*** 60,64 ****
# This is the *documentation* release, and is used to construct the file
# names of the downloadable tarballs.
! RELEASE=1.5.2p1
--- 60,64 ----
# This is the *documentation* release, and is used to construct the file
# names of the downloadable tarballs.
! RELEASE=1.6
***************
*** 220,223 ****
--- 220,224 ----
latex-$(RELEASE).zip:
+ rm -f $@
$(TOOLSDIR)/mksourcepkg --zip $(RELEASE)
***************
*** 229,256 ****
pdf-$(PAPER)-$(RELEASE).zip: pdf
! (cd paper-$(PAPER); zip -9 ../$@ *.pdf)
postscript-$(PAPER)-$(RELEASE).tar.bz2: ps
(cd paper-$(PAPER); $(MAKE) README)
! (cd paper-$(PAPER); tar cf - *.ps README) | gzip -9 >$@
postscript-$(PAPER)-$(RELEASE).tgz: ps
(cd paper-$(PAPER); $(MAKE) README)
! (cd paper-$(PAPER); tar cf - *.ps README) | bzip2 -9 >$@
postscript-$(PAPER)-$(RELEASE).zip: ps
(cd paper-$(PAPER); $(MAKE) README)
! (cd paper-$(PAPER); zip -9 ../$@ *.ps README)
html-$(RELEASE).tgz: html
! (cd $(HTMLDIR); tar cf - *index.html ???/*.css ???/*.html */*.gif) \
| gzip -9 >$@
html-$(RELEASE).tar.bz2: html
! (cd $(HTMLDIR); tar cf - *index.html ???/*.css ???/*.html */*.gif) \
| bzip2 -9 >$@
html-$(RELEASE).zip: html
! (cd $(HTMLDIR); zip -9 ../$@ *index.html ???/*.css ???/*.html */*.gif)
# convenience targets:
--- 230,263 ----
pdf-$(PAPER)-$(RELEASE).zip: pdf
! rm -f $@
! (cd paper-$(PAPER); zip -q -9 ../$@ *.pdf)
postscript-$(PAPER)-$(RELEASE).tar.bz2: ps
(cd paper-$(PAPER); $(MAKE) README)
! (cd paper-$(PAPER); tar cf - *.ps README) | bzip2 -9 >$@
postscript-$(PAPER)-$(RELEASE).tgz: ps
(cd paper-$(PAPER); $(MAKE) README)
! (cd paper-$(PAPER); tar cf - *.ps README) | gzip -9 >$@
postscript-$(PAPER)-$(RELEASE).zip: ps
(cd paper-$(PAPER); $(MAKE) README)
! rm -f $@
! (cd paper-$(PAPER); zip -q -9 ../$@ *.ps README)
html-$(RELEASE).tgz: html
! (cd $(HTMLDIR); \
! tar cf - *index.html ???/*.css ???/*.html */*.gif) \
| gzip -9 >$@
html-$(RELEASE).tar.bz2: html
! (cd $(HTMLDIR); \
! tar cf - *index.html ???/*.css ???/*.html */*.gif) \
| bzip2 -9 >$@
html-$(RELEASE).zip: html
! rm -f $@
! (cd $(HTMLDIR); \
! zip -q -9 ../$@ *index.html ???/*.css ???/*.html */*.gif)
# convenience targets: