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

This commit is contained in:
Fred Drake 2001-02-28 22:59:37 +00:00
parent 4419ac1a97
commit bca60c07b3

View file

@ -72,13 +72,13 @@ RELEASE=2.1a2
PYTHON= python PYTHON= python
DVIPS= dvips -N0 -t $(PAPER) DVIPS= dvips -N0 -t $(PAPER)
MKHOWTO= $(TOOLSDIR)/mkhowto MKDVI= ../tools/mkhowto --paper=$(PAPER) --dvi
MKHTML= $(MKHOWTO) --html --about html/stdabout.dat \ MKHTML= tools/mkhowto --html --about html/stdabout.dat \
--address $(PYTHONDOCS) --up-link ../index.html \ --address $(PYTHONDOCS) --up-link ../index.html \
--up-title "Python Documentation Index" \ --up-title "Python Documentation Index" \
--global-module-index "../modindex.html" --global-module-index "../modindex.html"
MKPDF= $(MKHOWTO) --paper=$(PAPER) --pdf MKPDF= ../tools/mkhowto --paper=$(PAPER) --pdf
MKPS= $(MKHOWTO) --paper=$(PAPER) --ps MKPS= ../tools/mkhowto --paper=$(PAPER) --ps
BUILDINDEX=$(TOOLSDIR)/buildindex.py BUILDINDEX=$(TOOLSDIR)/buildindex.py
@ -161,14 +161,14 @@ paper-$(PAPER)/dist.dvi: $(DISTFILES)
(cd paper-$(PAPER); $(MKDVI) ../dist/dist.tex) (cd paper-$(PAPER); $(MKDVI) ../dist/dist.tex)
paper-$(PAPER)/dist.pdf: $(DISTFILES) paper-$(PAPER)/dist.pdf: $(DISTFILES)
(cd paper-$(PAPER); $(MKPDF) ../dist/dist.tex (cd paper-$(PAPER); $(MKPDF) ../dist/dist.tex)
# Documenting Python # Documenting Python
paper-$(PAPER)/doc.dvi: $(DOCFILES) paper-$(PAPER)/doc.dvi: $(DOCFILES)
(cd paper-$(PAPER); $(MKDVI) ../doc/doc.tex (cd paper-$(PAPER); $(MKDVI) ../doc/doc.tex)
paper-$(PAPER)/doc.pdf: $(DOCFILES) 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 # Extending and Embedding the Python Interpreter
paper-$(PAPER)/ext.dvi: $(EXTFILES) paper-$(PAPER)/ext.dvi: $(EXTFILES)