diff options
author | Fred Drake <fdrake@acm.org> | 1998-02-13 03:23:33 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-02-13 03:23:33 (GMT) |
commit | 6eab2fb0f1a815af3fd1c02bb461194089799b8a (patch) | |
tree | 6e5a5f9767766437fb50174ad80e9e76451d3d04 | |
parent | 8a666e7c56192f42288a30a53adf5299fda29557 (diff) | |
download | cpython-6eab2fb0f1a815af3fd1c02bb461194089799b8a.zip cpython-6eab2fb0f1a815af3fd1c02bb461194089799b8a.tar.gz cpython-6eab2fb0f1a815af3fd1c02bb461194089799b8a.tar.bz2 |
Clean up some of the definitions related to info generation.
-rw-r--r-- | Doc/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index c13ed08..9a27a53 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -64,7 +64,8 @@ DOCDESTDIR= $LIBDEST/doc EMACS= emacs PYTHON= python MAKEINFO= makeinfo -PARTPARSE= $(PYTHON) ./partparse.pyc +PARTPARSEOBJ= partparse.pyc +PARTPARSE= $(PYTHON) $(PARTPARSEOBJ) # Ideally, you shouldn't need to edit beyond this point @@ -170,7 +171,10 @@ api.dvi: api.tex # The remaining part of the Makefile is concerned with various # conversions, as described above. See also the README file. -.SUFFIXES: .py .pyc +.SUFFIXES: .py .pyc .pyo + +.py.pyo: + $(PYTHON) -O -c "import $*" .py.pyc: $(PYTHON) -c "import $*" @@ -182,7 +186,7 @@ api.dvi: api.tex # and makeinfo can't handle a group with a leading @command. But at least # the info file gets generated. -lib1.texi: lib*.tex texipre.dat texipost.dat partparse.pyc +lib1.texi: lib*.tex texipre.dat texipost.dat $(PARTPARSEOBJ) $(PARTPARSE) -o lib1.texi `./whichlibs` sed 's/"{\\}n{\\}n/"\\n\\n/' lib1.texi >lib2.texi mv lib2.texi lib1.texi @@ -274,7 +278,7 @@ tarballs: tarpdf tarps tarhtml # - sources: .tex, .bib, .sty # - useful results: .dvi, .pdf, .ps, .texi, .info clean: l2hclean - rm -f @* *~ *.aux *.idx *.ilg *.ind *.log *.toc *.blg *.bbl *.pyc + rm -f @* *~ *.aux *.idx *.ilg *.ind *.log *.toc *.blg *.bbl *.py[co] rm -f *.bak *.orig lib1.texi rm -f html-$(VERSION).tar.gz postscript-$(VERSION).tar.gz rm -f pdf-$(VERSION).tar.gz |