.PHONY: build html

p312:
	PYTHON=python3.12 LIBGIT2_VERSION=1.7.1 sh build.sh

inplace:
	rm build -rf
	find -name __pycache__ | xargs rm -r
	python setup.py build_ext --inplace

build:
	OPENSSL_VERSION=3.0.9 LIBSSH2_VERSION=1.11.0 LIBGIT2_VERSION=1.7.1 sh build.sh

html: build
	make -C docs html
