fix logic error which didn't include all peps in build
This commit is contained in:
parent
b46a396fdc
commit
e4e02fe3dd
4
Makefile
4
Makefile
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue