python-peps/Makefile

27 lines
465 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
$(TARGETS): pep2html.py
2000-11-03 10:42:20 -05:00
install:
2006-01-15 02:29:30 -05:00
echo "Installing is not necessary anymore. It will be done in post-commit."
2000-11-03 10:42:20 -05:00
clean:
-rm *.html
2000-11-06 10:30:47 -05:00
update:
cvs update -P -d