From: Fred Drake Date: Thu, 7 May 1998 19:27:40 +0000 (+0000) Subject: Some cleanup, added clean & clobber targets. X-Git-Tag: v1.5.2a1~708 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a34f7e6a5df91acf405852818b8773749088b1df;p=python Some cleanup, added clean & clobber targets. --- diff --git a/Doc/paper-a4/Makefile b/Doc/paper-a4/Makefile index 15c7f14dfb..2187c8e857 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 diff --git a/Doc/paper-letter/Makefile b/Doc/paper-letter/Makefile index 72c8bbe6ae..95dffb8d34 100644 --- a/Doc/paper-letter/Makefile +++ b/Doc/paper-letter/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