Makefile to build only the required HTML versions of the PEPs rather than

all of them.
This commit is contained in:
Fred Drake 2000-09-07 01:29:32 +00:00
parent f07c9e76b0
commit 242b05ad16
1 changed files with 15 additions and 0 deletions

15
Makefile Normal file
View File

@ -0,0 +1,15 @@
# Rules to only make the required HTML versions, not all of them,
# without the user having to keep track of which.
#
# Not really important, but convenient.
PEP2HTML=./pep2html.py -q
.SUFFIXES: .txt .html
.txt.html:
$(PEP2HTML) $<
TARGETS=$(patsubst %.txt,%.html,$(wildcard pep-*.txt))
all: $(TARGETS)