ID: 3a172a0b46d97986146c28b277a9e78a759c9eaf
31 lines
—
588B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/Pylons/translationstring.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/pylons-translationstring
else
$(error OUTPUT_PATH is undefined)
endif
venv-3.5:
export PYENV_VERSION=3.5
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
1.4: check_env_vars venv-3.5 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:
|