ID: e98a63bb9b3c904e4b3a571bca27f5dc0ddc0225
30 lines
—
535B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/Pylons/deform.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/pylons-deform
else
$(error OUTPUT_PATH is undefined)
endif
venv:
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
2.0.15: 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:
|