Commit 465a42a5 authored by Fred Drake's avatar Fred Drake

Added targets dvi, pdf, and ps, to make all of the documents in those formats.

parent b91e934c
...@@ -90,17 +90,17 @@ MKPDF= TEXINPUTS=$(TEXINPUTS) $(srcdir)/tools/mkdvi.sh --pdf ...@@ -90,17 +90,17 @@ MKPDF= TEXINPUTS=$(TEXINPUTS) $(srcdir)/tools/mkdvi.sh --pdf
# Main target # Main target
all: all-ps all: all-ps
all-dvi: all-dvi dvi:
(cd paper-$(PAPER); \ (cd paper-$(PAPER); \
$(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) \ $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) \
-f ../Makefile do-dvi) -f ../Makefile do-dvi)
all-pdf: all-pdf pdf:
(cd paper-$(PAPER); \ (cd paper-$(PAPER); \
$(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) \ $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) \
-f ../Makefile do-pdf) -f ../Makefile do-pdf)
all-ps: all-ps ps:
(cd paper-$(PAPER); \ (cd paper-$(PAPER); \
$(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) \ $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) \
-f ../Makefile do-ps) -f ../Makefile do-ps)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment