From a34f7e6a5df91acf405852818b8773749088b1df Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Thu, 7 May 1998 19:27:40 +0000 Subject: [PATCH] Some cleanup, added clean & clobber targets. --- Doc/paper-a4/Makefile | 15 ++++++++++++--- Doc/paper-letter/Makefile | 15 ++++++++++++--- 2 files changed, 24 insertions(+), 6 deletions(-) diff --git a/Doc/paper-a4/Makefile b/Doc/paper-a4/Makefile index 15c7f14dfb5..2187c8e8579 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 72c8bbe6aee..95dffb8d34c 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