SHELL = /bin/bash REPOSITORY = https://github.com/astropy/astropy.git check_env_vars: ifdef OUTPUT_PATH OUTPUT_PATH := ${OUTPUT_PATH}/astropy else $(error OUTPUT_PATH is undefined) endif venv: python3 -m venv venv venv-3.8: export PYENV_VERSION=3.8 python3 -m venv venv repository: git clone ${REPOSITORY} repository v5.3.4 v6.0.0: check_env_vars venv repository source venv/bin/activate cd repository git checkout tags/$@ pip install .[all,docs] cd docs make clean dirhtml mkdir --parents "${OUTPUT_PATH}" cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@" v4.3.1: check_env_vars venv-3.8 repository source venv/bin/activate cd repository git checkout tags/$@ pip install .[docs] cd docs make clean dirhtml mkdir --parents "${OUTPUT_PATH}" cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@" .ONESHELL: .SUFFIXES: .PHONY: .DELETE_ON_ERROR: