7
mirror of https://github.com/Hack-a-Day/Vectorscope.git synced 2024-12-22 22:09:30 +00:00
Vectorscope/docs/badge_talk_2023/Makefile
Elliot Williams f3999aae76 badge talk.
2023-11-03 18:56:29 +01:00

16 lines
261 B
Makefile

all: badge_2023.html
THEME=moon
%.html: %.md
# pandoc -t revealjs -V theme:${THEME} -s $^ -o $@
pandoc -t revealjs -S -i -s $^ -o $@
# pandoc -t dzslides -s $^ -o $@
%.pdf: %.md
pandoc -t beamer -V theme:metropolis -s $^ -o $@
clean:
rm *.pdf *.html