From a14d5de987f540a4f9bcc4ec89f614810633d482 Mon Sep 17 00:00:00 2001 From: JP Appel Date: Fri, 19 Apr 2024 20:18:59 -0400 Subject: created build rules for presentation --- makefile | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'makefile') 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 -- cgit v1.2.3