analistica/slides/makefile

16 lines
304 B
Makefile
Raw Normal View History

2020-06-04 12:34:17 +02:00
slides = $(shell find sections/ -name "*.md" | sort -V)
pandoc = \
@ pandoc $1 \
--pdf-engine xelatex \
-t beamer \
-o $2
all: slides.pdf handout.pdf
slides.pdf: $(slides) | images
$(call pandoc, $^, $@)
handout.pdf: $(slides) | images
$(call pandoc, $^ -V handout, $@)