home » zplus/dokk.git
ID: 18e63dbcea91171772533e7f92b6008ba9e5e2ae
33 lines — 609B — View raw


SHELL = /bin/bash

REPOSITORY = https://github.com/jrkerns/pylinac.git

check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/pylinac
else
	$(error OUTPUT_PATH is undefined)
endif

venv-3.9:
	export PYENV_VERSION=3.9
	python3 -m venv venv

repository:
	git clone ${REPOSITORY} repository

v3.17: check_env_vars venv-3.9 repository
	source venv/bin/activate
	cd repository
	git checkout tags/$@
	pip install -r requirements-rtd.txt
	cd docs
	make clean
	make dirhtml
	mkdir --parents "${OUTPUT_PATH}"
	cp --recursive build/dirhtml "${OUTPUT_PATH}/$@"

.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR: