aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile18
1 files changed, 16 insertions, 2 deletions
diff --git a/makefile b/makefile
index fc582ae..445e881 100644
--- a/makefile
+++ b/makefile
@@ -4,7 +4,21 @@ LDFLAGS :=
all:
+
+################
+# Animations #
+################
+
+##################
+# Presentation #
+##################
+
+presentation: presentation/presentation.html
+
+presentation/presentation.html: presentation/presentation.md
+ pandoc -t revealjs -so $@ $<
+
clean:
- rm -rf
+ rm -rf presentation/presentation.html
-.PHONY: all clean
+.PHONY: all presentation clean