RST=$(wildcard *.rst)

default:
	@echo "targets: html, pdf"

clean:
	-rm -rf html pdf

html: $(RST)
	mkdir -p html
	cp -pr *.png test-connection-scaling test-db-param html
	rst2html5 dbt2.rst html/index.html

pdf: html
	mkdir -p pdf
	pandoc -s html/index.html -t pdf -o pdf/dbt2.pdf
