diff options
author | Fred Drake <fdrake@acm.org> | 1998-07-23 18:10:51 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-07-23 18:10:51 (GMT) |
commit | 465a42a58ef0ab767b1e0c557393b098521f4628 (patch) | |
tree | 4953e0e0c4601f1d29d7ce87a236474d04468cca /Doc/Makefile | |
parent | b91e934cf1c45353a06eef77eac7cec609406646 (diff) | |
download | cpython-465a42a58ef0ab767b1e0c557393b098521f4628.zip cpython-465a42a58ef0ab767b1e0c557393b098521f4628.tar.gz cpython-465a42a58ef0ab767b1e0c557393b098521f4628.tar.bz2 |
Added targets dvi, pdf, and ps, to make all of the documents in those formats.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index cb6008e..1ab0c13 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -90,17 +90,17 @@ MKPDF= TEXINPUTS=$(TEXINPUTS) $(srcdir)/tools/mkdvi.sh --pdf # Main target all: all-ps -all-dvi: +all-dvi dvi: (cd paper-$(PAPER); \ $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) \ -f ../Makefile do-dvi) -all-pdf: +all-pdf pdf: (cd paper-$(PAPER); \ $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) \ -f ../Makefile do-pdf) -all-ps: +all-ps ps: (cd paper-$(PAPER); \ $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) \ -f ../Makefile do-ps) |