.PHONY: dev rebuild html

dev:
	SETUPTOOLS_SCM_PRETEND_VERSION_FOR_SEAMSH=0.2 \
	pip install -e . --no-deps --no-build-isolation \
	-Cbuild-dir=build \
	-Ccmake.build-type=RelWithDebInfo

rebuild:
	cmake --build build

wheel:
	SETUPTOOLS_SCM_PRETEND_VERSION_FOR_SEAMSH=0.2 \
	python -mbuild --wheel --no-isolation

html:
	$(MAKE) -C doc html >/dev/null
