aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2024-04-19 20:18:59 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2024-04-19 20:18:59 -0400
commita14d5de987f540a4f9bcc4ec89f614810633d482 (patch)
tree8880a8e7e6570525daf72fc17c8b36f94f041bfd /makefile
parent706c30fa8ad8cc0a48c6d4d62902ee0d6802662e (diff)
created build rules for presentation
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