ID: 2a45d86d17d77e89e3424a423c2b52265c32dfb1
33 lines
—
634B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/aio-libs/aiobotocore.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/aiobotocore
else
$(error OUTPUT_PATH is undefined)
endif
venv-3.6:
export PYENV_VERSION=3.6
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
0.12.0 1.4.2 2.11.1: check_env_vars venv-3.6 repository
source venv/bin/activate
cd repository
git checkout tags/$@
pip install -r docs/requirements.txt
cd docs
make clean
make dirhtml
mkdir --parents "${OUTPUT_PATH}"
cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"
.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR:
|