.PHONY: clean

all: build/html build/markdown

build/html:
	sphinx-build -b html src build/html

dist/markdown:
	sphinx-build -M markdown src dist

clean:
	rm -rv build
