[Python-checkins] CVS: python/dist/src/Doc/html Makefile,1.35,1.36

Fred L. Drake python-dev@python.org
Thu, 31 Aug 2000 00:00:20 -0700


Update of /cvsroot/python/python/dist/src/Doc/html
In directory slayer.i.sourceforge.net:/tmp/cvs-serv26119/html

Modified Files:
	Makefile 
Log Message:

Move common parameters to mkhowto to a variable, add up-link from the
generated documents to the document index.


Index: Makefile
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/html/Makefile,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -r1.35 -r1.36
*** Makefile	2000/08/31 06:12:35	1.35
--- Makefile	2000/08/31 07:00:17	1.36
***************
*** 13,17 ****
  PYTHON=	   python
  WEBCHECKER=$(PYTHON) $(TOPDIR)/../Tools/webchecker/webchecker.py
! MKHOWTO=   $(TOOLSDIR)/mkhowto
  
  BUILDINDEX=$(TOOLSDIR)/buildindex.py
--- 13,20 ----
  PYTHON=	   python
  WEBCHECKER=$(PYTHON) $(TOPDIR)/../Tools/webchecker/webchecker.py
! MKHOWTO=   $(TOOLSDIR)/mkhowto --about $(TOPDIR)/html/stdabout.dat \
! 		--up-link ../index.html --up-title "Document Index" \
! 		--address $(PYTHONDOCS)
! MKHTML=	   $(MKHOWTO) --html
  
  BUILDINDEX=$(TOOLSDIR)/buildindex.py
***************
*** 63,101 ****
  
  api/api.html:  $(APIFILES) $(BUILDINDEX)
! 	$(MKHOWTO) --about stdabout.dat --address $(PYTHONDOCS) \
! 		--html $(TOPDIR)/api/api.tex
  
  doc/doc.html:  $(DOCFILES) $(BUILDINDEX)
! 	$(MKHOWTO) --about stdabout.dat --address $(PYTHONDOCS) \
! 		--html $(TOPDIR)/doc/doc.tex
  
  ext/ext.html:  $(EXTFILES)
  	echo $(EXTFILES)
! 	$(MKHOWTO) --about stdabout.dat --address $(PYTHONDOCS) \
! 		--html $(TOPDIR)/ext/ext.tex
  
  lib/lib.html:  $(LIBFILES) $(BUILDINDEX)
! 	$(MKHOWTO) --about stdabout.dat --address $(PYTHONDOCS) \
! 		--html $(TOPDIR)/lib/lib.tex
  
  mac/mac.html:  $(MACFILES) $(BUILDINDEX)
! 	$(MKHOWTO) --about stdabout.dat --address $(PYTHONDOCS) \
! 		--html $(TOPDIR)/mac/mac.tex
  
  ref/ref.html:  $(REFFILES) $(BUILDINDEX)
! 	$(MKHOWTO) --about stdabout.dat --address $(PYTHONDOCS) \
! 		--html $(TOPDIR)/ref/ref.tex
  
  tut/tut.html:  $(TUTFILES) $(TOOLSDIR)/mkhowto
! 	$(MKHOWTO) --about stdabout.dat --address $(PYTHONDOCS) \
! 		--html --numeric --split 3 $(TOPDIR)/tut/tut.tex
  
  inst/inst.html: $(INSTFILES) $(TOPDIR)/perl/distutils.perl
! 	$(MKHOWTO) --about stdabout.dat --address $(PYTHONDOCS) \
! 		--html $(TOPDIR)/inst/inst.tex
  
  dist/dist.html:$(DISTFILES) $(TOPDIR)/perl/distutils.perl
! 	$(MKHOWTO) --about stdabout.dat --address $(PYTHONDOCS) \
! 		--html $(TOPDIR)/dist/dist.tex
  
  webcheck: all
--- 66,95 ----
  
  api/api.html:  $(APIFILES) $(BUILDINDEX)
! 	$(MKHTML) $(TOPDIR)/api/api.tex
  
  doc/doc.html:  $(DOCFILES) $(BUILDINDEX)
! 	$(MKHTML) $(TOPDIR)/doc/doc.tex
  
  ext/ext.html:  $(EXTFILES)
  	echo $(EXTFILES)
! 	$(MKHTML) $(TOPDIR)/ext/ext.tex
  
  lib/lib.html:  $(LIBFILES) $(BUILDINDEX)
! 	$(MKHTML) $(TOPDIR)/lib/lib.tex
  
  mac/mac.html:  $(MACFILES) $(BUILDINDEX)
! 	$(MKHTML) $(TOPDIR)/mac/mac.tex
  
  ref/ref.html:  $(REFFILES) $(BUILDINDEX)
! 	$(MKHTML) $(TOPDIR)/ref/ref.tex
  
  tut/tut.html:  $(TUTFILES) $(TOOLSDIR)/mkhowto
! 	$(MKHTML) --numeric --split 3 $(TOPDIR)/tut/tut.tex
  
  inst/inst.html: $(INSTFILES) $(TOPDIR)/perl/distutils.perl
! 	$(MKHTML) $(TOPDIR)/inst/inst.tex
  
  dist/dist.html:$(DISTFILES) $(TOPDIR)/perl/distutils.perl
! 	$(MKHTML) $(TOPDIR)/dist/dist.tex
  
  webcheck: all