mirror of
https://github.com/Hack-a-Day/Vectorscope.git
synced 2025-02-19 17:19:38 +00:00
16 lines
261 B
Makefile
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
|
|
|