python-peps/Makefile

25 lines
379 B
Makefile
Raw Normal View History

# 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.
2000-11-03 10:42:20 -05:00
PEP2HTML=./pep2html.py
.SUFFIXES: .txt .html
.txt.html:
$(PEP2HTML) $<
TARGETS=$(patsubst %.txt,%.html,$(wildcard pep-*.txt))
all: $(TARGETS)
2000-11-03 10:42:20 -05:00
install:
$(PEP2HTML) -i
clean:
-rm *.html
2000-11-06 10:30:47 -05:00
update:
cvs update -P -d