ID: be5327dcc373dca09c741c06f2b0bcd7ba404b26
28 lines
—
519B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/pyinvoke/invoke.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/pyinvoke
else
$(error OUTPUT_PATH is undefined)
endif
venv:
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
2.1.0 2.2.0: check_env_vars venv repository
source venv/bin/activate
cd repository
git checkout tags/$@
pip install -r dev-requirements.txt
sphinx-build -b dirhtml sites/docs "${OUTPUT_PATH}/$@"
.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR:
|