fix logic error which didn't include all peps in build

This commit is contained in:
Benjamin Peterson 2009-01-11 00:41:53 +00:00
parent b46a396fdc
commit e4e02fe3dd
1 changed files with 2 additions and 2 deletions

View File

@ -10,13 +10,13 @@ PEP2HTML=./pep2html.py
.txt.html:
$(PEP2HTML) $<
TARGETS=$(patsubst %.txt,%.html,$(wildcard pep-????.txt))
TARGETS=$(patsubst %.txt,%.html,$(wildcard pep-????.txt)) pep-0000.html
all: pep-0000.txt $(TARGETS)
$(TARGETS): pep2html.py
pep-0000.txt: $(wildcard pep-???[1-9].txt)
pep-0000.txt: $(wildcard pep-????.txt)
./genpepindex.py .
install: