From 52b19628cda7716dc932cf32895ea7d0e3f22505 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Fri, 3 Nov 2000 15:42:20 +0000 Subject: [PATCH] Added `install' and `clean' targets. --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b2705adcb..7db65dbbd 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ # # Not really important, but convenient. -PEP2HTML=./pep2html.py -q +PEP2HTML=./pep2html.py .SUFFIXES: .txt .html @@ -13,3 +13,9 @@ PEP2HTML=./pep2html.py -q TARGETS=$(patsubst %.txt,%.html,$(wildcard pep-*.txt)) all: $(TARGETS) + +install: + $(PEP2HTML) -i + +clean: + -rm *.html