NAME=engine-dwh-reports-on-separate-hosts
OPTIONS=-T $(NAME) -B ovirt-background.html -t slidy -c ovirt-slidy.css -s

all: presentation dependent zip

presentation: $(NAME).md
	pandoc --self-contained $(OPTIONS) -o $(NAME)-presentation.html $(NAME).md

dependent: $(NAME).md
	pandoc $(OPTIONS) -o $(NAME)-dependent.html $(NAME).md

zip: presentation dependent
	zip -r $(NAME)-presentation.zip Makefile index.html ovirt* slidy $(NAME)-*.html $(NAME).md

clean:
	/bin/rm -f $(NAME)-*.html *.zip

