[Python-checkins] python/dist/src/Doc Makefile,1.264,1.265

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Thu Sep 25 11:25:39 EDT 2003


Update of /cvsroot/python/python/dist/src/Doc
In directory sc8-pr-cvs1:/tmp/cvs-serv30827

Modified Files:
	Makefile 
Log Message:
define a variable to specify the mkhowto program itself, as for any
other application


Index: Makefile
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/Makefile,v
retrieving revision 1.264
retrieving revision 1.265
diff -C2 -d -r1.264 -r1.265
*** Makefile	30 Jul 2003 19:14:54 -0000	1.264
--- Makefile	25 Sep 2003 15:25:37 -0000	1.265
***************
*** 72,88 ****
  DVIPS=	   dvips -N0 -t $(PAPER)
  
! MKDVI=	   $(PYTHON) ../tools/mkhowto --paper=$(PAPER) --dvi
! MKHTML=	   $(PYTHON) tools/mkhowto --html --about html/stdabout.dat \
  		--iconserver ../icons --favicon ../icons/pyfav.gif \
  		--address $(PYTHONDOCS) --up-link ../index.html \
  		--up-title "Python Documentation Index" \
  		--global-module-index "../modindex.html" --dvips-safe
! MKISILOHTML=$(PYTHON) tools/mkhowto --html --about html/stdabout.dat \
  		--iconserver ../icons \
  		--l2h-init perl/isilo.perl --numeric --split 1 \
  		--dvips-safe
  MKISILO=   iSilo386 -U -y -rCR -d0
! MKPDF=	   $(PYTHON) ../tools/mkhowto --paper=$(PAPER) --pdf
! MKPS=	   $(PYTHON) ../tools/mkhowto --paper=$(PAPER) --ps
  
  BUILDINDEX=$(TOOLSDIR)/buildindex.py
--- 72,90 ----
  DVIPS=	   dvips -N0 -t $(PAPER)
  
! MKHOWTO=   $(PYTHON) ../tools/mkhowto
! 
! MKDVI=	   $(MKHOWTO) --paper=$(PAPER) --dvi
! MKHTML=	   $(MKHOWTO) --html --about html/stdabout.dat \
  		--iconserver ../icons --favicon ../icons/pyfav.gif \
  		--address $(PYTHONDOCS) --up-link ../index.html \
  		--up-title "Python Documentation Index" \
  		--global-module-index "../modindex.html" --dvips-safe
! MKISILOHTML=$(MKHOWTO) --html --about html/stdabout.dat \
  		--iconserver ../icons \
  		--l2h-init perl/isilo.perl --numeric --split 1 \
  		--dvips-safe
  MKISILO=   iSilo386 -U -y -rCR -d0
! MKPDF=	   $(MKHOWTO) --paper=$(PAPER) --pdf
! MKPS=	   $(MKHOWTO) --paper=$(PAPER) --ps
  
  BUILDINDEX=$(TOOLSDIR)/buildindex.py





More information about the Python-checkins mailing list