ID: 0a7e2efe2e1c8557eb21e770b5ad4c0eb0861e58
33 lines
—
636B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/aio-libs/aiohttp-mako.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/aiohttp-mako
else
$(error OUTPUT_PATH is undefined)
endif
venv-3.7:
export PYENV_VERSION=3.7
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
v0.3.0 v1.0.0: check_env_vars venv-3.7 repository
source venv/bin/activate
cd repository
git checkout tags/$@
pip install -r requirements-dev.txt sphinx
cd docs
make clean
make dirhtml
mkdir --parents "${OUTPUT_PATH}"
cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"
.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR:
|