SHELL = /bin/bash REPOSITORY = https://github.com/Astroua/TurbuStat.git check_env_vars: ifdef OUTPUT_PATH OUTPUT_PATH := ${OUTPUT_PATH}/turbustat else $(error OUTPUT_PATH is undefined) endif venv-3.11: export PYENV_VERSION=3.11 python3 -m venv venv venv-3.7: export PYENV_VERSION=3.7 python3 -m venv venv repository: git clone ${REPOSITORY} repository v1.3: check_env_vars venv-3.11 repository source venv/bin/activate cd repository git checkout tags/$@ pip install .[docs] cd docs make clean make dirhtml mkdir --parents "${OUTPUT_PATH}" cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@" v1.2.1: check_env_vars venv-3.7 repository source venv/bin/activate cd repository git checkout tags/$@ pip install .[docs] cd docs make clean make dirhtml mkdir --parents "${OUTPUT_PATH}" cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@" .ONESHELL: .SUFFIXES: .PHONY: .DELETE_ON_ERROR: