mirror of
https://github.com/Hack-a-Day/Vectorscope.git
synced 2024-12-22 22:09:30 +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
|
|
|