ID: 9a4fb112ecfabcba6cd2b78254bf7e0ad10f10b9
31 lines
—
578B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/python/mypy.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/mypy
else
$(error OUTPUT_PATH is undefined)
endif
venv:
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
v0.991 v1.7.1 v1.8.0: check_env_vars venv repository
source venv/bin/activate
cd repository
git checkout tags/$@
cd docs
pip install -r requirements-docs.txt
make clean dirhtml
mkdir --parents "${OUTPUT_PATH}"
cp --recursive build/dirhtml "${OUTPUT_PATH}/$@"
.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR:
|