home » zplus/dokk.git
ID: 3c070532f77353edd12c4362aca967a581fd940f
34 lines — 557B — View raw


# THIS IS NOT WORKING, NEEDS FIXING


SHELL = /bin/bash

REPOSITORY = https://github.com/rogerbinns/apsw.git

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

venv:
	python3 -m venv venv

repository:
	git clone ${REPOSITORY} repository

3.44.0.0: check_env_vars venv repository
	source venv/bin/activate
	cd repository
	git checkout tags/$@
	make docs
	#mkdir --parents "${OUTPUT_PATH}"
	#cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"

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