2000-09-06 21:29:32 -04:00
|
|
|
# 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.
|
|
|
|
|
2009-01-27 15:05:05 -05:00
|
|
|
PEP2HTML=pep2html.py
|
|
|
|
|
2010-07-22 08:21:10 -04:00
|
|
|
PYTHON=python
|
2000-09-06 21:29:32 -04:00
|
|
|
|
|
|
|
.SUFFIXES: .txt .html
|
|
|
|
|
|
|
|
.txt.html:
|
2009-09-17 05:42:09 -04:00
|
|
|
@$(PYTHON) $(PEP2HTML) $<
|
2000-09-06 21:29:32 -04:00
|
|
|
|
2009-01-10 19:41:53 -05:00
|
|
|
TARGETS=$(patsubst %.txt,%.html,$(wildcard pep-????.txt)) pep-0000.html
|
2000-09-06 21:29:32 -04:00
|
|
|
|
2009-01-07 22:53:19 -05:00
|
|
|
all: pep-0000.txt $(TARGETS)
|
2000-11-03 10:42:20 -05:00
|
|
|
|
2002-05-28 11:30:29 -04:00
|
|
|
$(TARGETS): pep2html.py
|
|
|
|
|
2011-11-28 09:07:42 -05:00
|
|
|
pep-0000.txt: $(wildcard pep-????.txt) $(wildcard pep0/*.py)
|
2009-01-27 15:05:05 -05:00
|
|
|
$(PYTHON) genpepindex.py .
|
2009-01-07 22:53:19 -05:00
|
|
|
|
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:
|
2009-01-07 22:53:19 -05:00
|
|
|
-rm pep-0000.txt
|
2000-11-03 10:42:20 -05:00
|
|
|
-rm *.html
|
2000-11-06 10:30:47 -05:00
|
|
|
|
|
|
|
update:
|
2014-09-29 23:55:52 -04:00
|
|
|
hg pull -u https://hg.python.org/peps
|