ID: 1d1dd004dc64de66978061df3e365441d3f9b7f1
30 lines
—
542B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/Pylons/hupper.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/pylons-hupper
else
$(error OUTPUT_PATH is undefined)
endif
venv:
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
0.5 1.11 1.12: check_env_vars venv repository
source venv/bin/activate
cd repository
git checkout tags/$@
pip install .[docs]
cd docs
mkdir --parents "${OUTPUT_PATH}"
sphinx-build -b dirhtml . "${OUTPUT_PATH}/$@"
.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR:
|