SHELL := /bin/bash

.PHONY: all html clean

all: docs

html:
	# Build html documentation
	../tools/build_documentation.sh

clean:
	# Remove html documentation and autogenerated rst files
	rm -rfv ./dist ./src/ref
