SHELL = /bin/bash REPOSITORY = https://github.com/tox-dev/filelock.git check_env_vars: ifdef OUTPUT_PATH OUTPUT_PATH := ${OUTPUT_PATH}/python-tox-filelock else $(error OUTPUT_PATH is undefined) endif venv-3.11: export PYENV_VERSION=3.11 python3 -m venv venv venv-3.8: export PYENV_VERSION=3.8 python3 -m venv venv repository: git clone ${REPOSITORY} repository 3.13.1: check_env_vars venv-3.11 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}/$@" v2.0.13: check_env_vars venv-3.8 repository source venv/bin/activate cd repository git checkout tags/$@ pip install "sphinx < 8" sphinx_rtd_theme cd docs make clean make dirhtml mkdir --parents "${OUTPUT_PATH}" cp --recursive build/dirhtml "${OUTPUT_PATH}/$@" .ONESHELL: .SUFFIXES: .PHONY: .DELETE_ON_ERROR: