Commit bca60c07 authored by Fred Drake's avatar Fred Drake

Fix some rules broken by typos, others by the flattening of the makefile.

parent 4419ac1a
......@@ -72,13 +72,13 @@ RELEASE=2.1a2
PYTHON= python
DVIPS= dvips -N0 -t $(PAPER)
MKHOWTO= $(TOOLSDIR)/mkhowto
MKHTML= $(MKHOWTO) --html --about html/stdabout.dat \
MKDVI= ../tools/mkhowto --paper=$(PAPER) --dvi
MKHTML= tools/mkhowto --html --about html/stdabout.dat \
--address $(PYTHONDOCS) --up-link ../index.html \
--up-title "Python Documentation Index" \
--global-module-index "../modindex.html"
MKPDF= $(MKHOWTO) --paper=$(PAPER) --pdf
MKPS= $(MKHOWTO) --paper=$(PAPER) --ps
MKPDF= ../tools/mkhowto --paper=$(PAPER) --pdf
MKPS= ../tools/mkhowto --paper=$(PAPER) --ps
BUILDINDEX=$(TOOLSDIR)/buildindex.py
......@@ -161,14 +161,14 @@ paper-$(PAPER)/dist.dvi: $(DISTFILES)
(cd paper-$(PAPER); $(MKDVI) ../dist/dist.tex)
paper-$(PAPER)/dist.pdf: $(DISTFILES)
(cd paper-$(PAPER); $(MKPDF) ../dist/dist.tex
(cd paper-$(PAPER); $(MKPDF) ../dist/dist.tex)
# Documenting Python
paper-$(PAPER)/doc.dvi: $(DOCFILES)
(cd paper-$(PAPER); $(MKDVI) ../doc/doc.tex
(cd paper-$(PAPER); $(MKDVI) ../doc/doc.tex)
paper-$(PAPER)/doc.pdf: $(DOCFILES)
(cd paper-$(PAPER); $(MKPDF) ../doc/doc.tex_
(cd paper-$(PAPER); $(MKPDF) ../doc/doc.tex)
# Extending and Embedding the Python Interpreter
paper-$(PAPER)/ext.dvi: $(EXTFILES)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment