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