# Sphinx documentation build Makefile

.PHONY: help clean html text

help:
	@echo "Sphinx documentation build targets:"
	@echo "  make html  - build HTML documentation"
	@echo "  make text  - build text documentation"
	@echo "  make clean - remove build artifacts"

html:
	sphinx-build -b html . _build/html

text:
	sphinx-build -b text . _build/text

clean:
	rm -rf _build/
