treesummaryrefslogcommitdiff
path: root/Makefile
blob: 1cd42a41b8daafc2711ed3aac10954100db92005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FLAGS=--standalone --slide-level=4 --strip-comments

all:
	pandoc -t revealjs pres.md -o pres.html $(FLAGS)

embed:
	pandoc -t revealjs pres.md -o pres.html $(FLAGS) --embed-resources

entr:
	ls pres.md | entr -s make

PHONY: all embed entr