diff options
Diffstat (limited to 'annual/2023/Makefile')
-rw-r--r-- | annual/2023/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/annual/2023/Makefile b/annual/2023/Makefile new file mode 100644 index 0000000..81abadc --- /dev/null +++ b/annual/2023/Makefile @@ -0,0 +1,17 @@ +SLIDES = agenda +PAPERS = annual-report + +all: \ + $(addsuffix .pdf, $(SLIDES)) \ + $(addsuffix .pdf, $(PAPERS)) + +$(addsuffix .pdf, $(SLIDES)): %.pdf: %.md + pandoc -s -f markdown -t beamer -o $@ < $< + +$(addsuffix .pdf, $(PAPERS)): %.pdf: %.md + pandoc -s -f markdown -t latex -o $@ < $< + +$(addsuffix .tex, $(PAPERS)): %.tex: %.md + pandoc -s -f markdown -t latex -o $@ < $< + + |