ID: 12294d366e121c9319d77f16c24b90d28ee4be62
33 lines
—
647B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/Phlya/adjustText.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/matplotlib-adjusttext
else
$(error OUTPUT_PATH is undefined)
endif
venv-3.10:
export PYENV_VERSION=3.10
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
0.8.1 v1.0 v1.0.4 v1.1.1: check_env_vars venv-3.10 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:
|