diff options
author | Fred Drake <fdrake@acm.org> | 2001-02-28 22:59:37 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-02-28 22:59:37 (GMT) |
commit | bca60c07b3ce554e62d38850faac2ce837428e96 (patch) | |
tree | ec9547fedc35cb04b55e946e18867fd44d56a9cd /Doc/Makefile | |
parent | 4419ac1a97d445f3fadacbf7b25c4cfc258c733b (diff) | |
download | cpython-bca60c07b3ce554e62d38850faac2ce837428e96.zip cpython-bca60c07b3ce554e62d38850faac2ce837428e96.tar.gz cpython-bca60c07b3ce554e62d38850faac2ce837428e96.tar.bz2 |
Fix some rules broken by typos, others by the flattening of the makefile.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index eb36366..fc54244 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -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) |