home » zplus/dokk.git
ID: 2e8a1fe851eaa4ed8e8cc036467480c209145302
39 lines — 834B — View raw


SHELL = /bin/bash

REPOSITORY = https://github.com/tomography/tomobank.git

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

venv:
	python3 -m venv venv

repository:
	git clone ${REPOSITORY} repository

# This repo doesn't use tags for releases, therefore we checkout specific commits.
# The date is the commit's date.
2023-12-23-31de115e: check_env_vars venv repository
	# Extract commit hash
	commit_hash=$@
	commit_hash=$${commit_hash:11}

	source venv/bin/activate
	cd repository
	git checkout $${commit_hash}
	pip install -r envs/requirements.txt
	pip install -r envs/requirements-doc.txt
	cd docs
	make clean
	make dirhtml
	mkdir --parents "${OUTPUT_PATH}"
	cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"

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