From: Fred Drake Date: Thu, 23 Jul 1998 18:10:51 +0000 (+0000) Subject: Added targets dvi, pdf, and ps, to make all of the documents in those formats. X-Git-Tag: v1.5.2a1~256 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=465a42a58ef0ab767b1e0c557393b098521f4628;p=thirdparty%2FPython%2Fcpython.git Added targets dvi, pdf, and ps, to make all of the documents in those formats. --- diff --git a/Doc/Makefile b/Doc/Makefile index cb6008e15906..1ab0c13505db 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)