diff options
| author | patrick-scho | 2025-07-16 12:10:24 +0200 |
|---|---|---|
| committer | patrick-scho | 2025-07-16 12:10:24 +0200 |
| commit | a31e99e5e28da21a35ad7417ee616a79fc931bfa (patch) | |
| tree | 497d3dbe90b05f2d9ebff7704e933bcd8243ba27 | |
| parent | 5d9a55c316272790675109789a9f0ed9e47ba00a (diff) | |
| download | ouroboros-slides-a31e99e5e28da21a35ad7417ee616a79fc931bfa.tar.gz ouroboros-slides-a31e99e5e28da21a35ad7417ee616a79fc931bfa.zip | |
update Makefile
| -rw-r--r-- | Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -1,10 +1,12 @@ +FLAGS=--standalone --slide-level=4 --strip-comments + all: - pandoc -t revealjs --standalone pres.md -o pres.html --slide-level=4 + 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 -embed: - pandoc -t revealjs --standalone --embed-resources pres.md -o pres.html --slide-level=4 - -.PHONS: all embed +PHONY: all embed entr |
