summaryrefslogtreecommitdiff
path: root/Doc/Makefile
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2003-09-25 15:25:37 +0000
committerFred Drake <fdrake@acm.org>2003-09-25 15:25:37 +0000
commitdf49324c0bfb905a68b972952b661c6b2852dbf1 (patch)
tree422a804d0b8b3c3d43194013fd5bff3051a34ac7 /Doc/Makefile
parentb2bdb3ee7dc2548551371f4584040b924a0065da (diff)
downloadcpython-git-df49324c0bfb905a68b972952b661c6b2852dbf1.tar.gz
define a variable to specify the mkhowto program itself, as for any
other application
Diffstat (limited to 'Doc/Makefile')
-rw-r--r--Doc/Makefile12
1 files changed, 7 insertions, 5 deletions
diff --git a/Doc/Makefile b/Doc/Makefile
index b15dbad814..3fae30b9d6 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -71,19 +71,21 @@ RELEASE=2.4a0
PYTHON= python
DVIPS= dvips -N0 -t $(PAPER)
-MKDVI= $(PYTHON) ../tools/mkhowto --paper=$(PAPER) --dvi
-MKHTML= $(PYTHON) tools/mkhowto --html --about html/stdabout.dat \
+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=$(PYTHON) tools/mkhowto --html --about html/stdabout.dat \
+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= $(PYTHON) ../tools/mkhowto --paper=$(PAPER) --pdf
-MKPS= $(PYTHON) ../tools/mkhowto --paper=$(PAPER) --ps
+MKPDF= $(MKHOWTO) --paper=$(PAPER) --pdf
+MKPS= $(MKHOWTO) --paper=$(PAPER) --ps
BUILDINDEX=$(TOOLSDIR)/buildindex.py