ID: f4a0103c09cfae9276a3a7582704f2d2b8839100
31 lines
—
596B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/django/asgiref.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/django-asgiref
else
$(error OUTPUT_PATH is undefined)
endif
venv:
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
3.1.4 3.2.10 3.3.4 3.4.1 3.5.2 3.6.0 3.7.2: check_env_vars venv repository
source venv/bin/activate
cd repository
git checkout tags/$@
pip install sphinx
cd docs
make clean dirhtml
mkdir --parents "${OUTPUT_PATH}"
cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"
.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR:
|