X-Git-Url: https://gitweb.ps.run/ouroboros-slides/blobdiff_plain/758f808544b19cfeee8fba9da045d06bd3357ea7..f70a1d08051fc3c4431e995a8189ca66fe428e20:/Makefile diff --git a/Makefile b/Makefile index 9157f44..1cd42a4 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,12 @@ +FLAGS=--standalone --slide-level=4 --strip-comments + all: - pandoc -t revealjs --standalone pres.md -o pres_md.html + pandoc -t revealjs pres.md -o pres.html $(FLAGS) embed: - pandoc -t revealjs --standalone --embed-resources pres.md -o pres_md.html + pandoc -t revealjs pres.md -o pres.html $(FLAGS) --embed-resources + +entr: + ls pres.md | entr -s make -.PHONS: all embed +PHONY: all embed entr