ID: 04a078b8ad794c8270b4f7dba5d5950b5a3a2cad
34 lines
—
650B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/alisaifee/flask-limiter.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/flask-limiter
else
$(error OUTPUT_PATH is undefined)
endif
venv-3.9:
export PYENV_VERSION=3.9
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
2.9.2 3.0.0 3.5.0: check_env_vars venv-3.9 repository
source venv/bin/activate
cd repository
git checkout tags/$@
pip install -r requirements/docs.txt
pip install .
cd doc
make clean
make dirhtml
mkdir --parents "${OUTPUT_PATH}"
cp --recursive build/dirhtml "${OUTPUT_PATH}/$@"
.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR:
|