diff options
author | Fred Drake <fdrake@acm.org> | 1999-03-16 16:11:27 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-03-16 16:11:27 (GMT) |
commit | 15087437d525a27c2d34d566390ef3085cf380c8 (patch) | |
tree | 0b6d790acc1d9fb68d8311d5149ac0ebe579ae34 /Doc/Makefile | |
parent | 8df362cf9753277dcc284e153ca0d2d9fe744268 (diff) | |
download | cpython-15087437d525a27c2d34d566390ef3085cf380c8.zip cpython-15087437d525a27c2d34d566390ef3085cf380c8.tar.gz cpython-15087437d525a27c2d34d566390ef3085cf380c8.tar.bz2 |
Add support for "Documenting Python".
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index e48fdb2..7487f15 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -84,6 +84,9 @@ world: ps pdf html tarballs api api.ps: (cd paper-$(PAPER); $(MAKE) api.ps) +doc doc.ps: + (cd paper-$(PAPER); $(MAKE) doc.ps) + ext ext.ps: (cd paper-$(PAPER); $(MAKE) ext.ps) @@ -103,6 +106,9 @@ tut tut.ps: api.dvi: (cd paper-$(PAPER); $(MAKE) api.dvi) +doc.dvi: + (cd paper-$(PAPER); $(MAKE) doc.dvi) + ext.dvi: (cd paper-$(PAPER); $(MAKE) ext.dvi) @@ -122,6 +128,9 @@ tut.dvi: api.pdf: (cd paper-$(PAPER); $(MAKE) api.pdf) +doc.pdf: + (cd paper-$(PAPER); $(MAKE) doc.pdf) + ext.pdf: (cd paper-$(PAPER); $(MAKE) ext.pdf) |