SHELL = /bin/bash REPOSITORY = https://github.com/Pylons/pyramid_mako.git check_env_vars: ifdef OUTPUT_PATH OUTPUT_PATH := ${OUTPUT_PATH}/pylons-pyramid_mako else $(error OUTPUT_PATH is undefined) endif venv: python3 -m venv venv repository: git clone ${REPOSITORY} repository 1.0.2 1.1.0: check_env_vars venv repository source venv/bin/activate cd repository git checkout tags/$@ pip install -r rtd.txt cd docs mkdir --parents "${OUTPUT_PATH}" sphinx-build -b dirhtml . "${OUTPUT_PATH}/$@" .ONESHELL: .SUFFIXES: .PHONY: .DELETE_ON_ERROR: