40 lines
761 B
Makefile
40 lines
761 B
Makefile
# 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.
|
|
|
|
PEP2HTML=pep2html.py
|
|
|
|
PYTHON=python
|
|
|
|
.SUFFIXES: .txt .html
|
|
|
|
.txt.html:
|
|
@$(PYTHON) $(PEP2HTML) $<
|
|
|
|
TARGETS=$(patsubst %.txt,%.html,$(wildcard pep-????.txt)) pep-0000.html
|
|
|
|
all: pep-0000.txt $(TARGETS)
|
|
|
|
$(TARGETS): pep2html.py
|
|
|
|
pep-0000.txt: $(wildcard pep-????.txt) $(wildcard pep0/*.py)
|
|
$(PYTHON) genpepindex.py .
|
|
|
|
rss:
|
|
$(PYTHON) pep2rss.py .
|
|
|
|
install:
|
|
echo "Installing is not necessary anymore. It will be done in post-commit."
|
|
|
|
clean:
|
|
-rm pep-0000.txt
|
|
-rm *.html
|
|
|
|
update:
|
|
git pull https://github.com/python/peps.git
|
|
|
|
venv:
|
|
$(PYTHON) -m venv venv
|
|
./venv/bin/python -m pip install -U docutils
|