diff options
author | Fred Drake <fdrake@acm.org> | 1998-05-07 19:27:40 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-05-07 19:27:40 (GMT) |
commit | a34f7e6a5df91acf405852818b8773749088b1df (patch) | |
tree | 4d52593e846e69e06e7ed3a7e8f1a0e4b18a9519 /Doc/paper-a4 | |
parent | bf332696a1d3853484d5e2a8f85a9fb72ca706dd (diff) | |
download | cpython-a34f7e6a5df91acf405852818b8773749088b1df.zip cpython-a34f7e6a5df91acf405852818b8773749088b1df.tar.gz cpython-a34f7e6a5df91acf405852818b8773749088b1df.tar.bz2 |
Some cleanup, added clean & clobber targets.
Diffstat (limited to 'Doc/paper-a4')
-rw-r--r-- | Doc/paper-a4/Makefile | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/Doc/paper-a4/Makefile b/Doc/paper-a4/Makefile index 15c7f14..2187c8e 100644 --- a/Doc/paper-a4/Makefile +++ b/Doc/paper-a4/Makefile @@ -5,10 +5,19 @@ TEXINPUTS=.:../texinputs: all: all-ps all-ps: - $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) -f ../Makefile all-ps + $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) \ + -f ../Makefile do-ps all-pdf: - $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) -f ../Makefile all-pdf + $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) \ + -f ../Makefile do-pdf all-dvi: - $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) -f ../Makefile all-dvi + $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) \ + -f ../Makefile do-dvi + +clean: + $(MAKE) -f ../Makefile clean + +clobber: + $(MAKE) -f ../Makefile clobber |