presentations/futures-async-await/Makefile

12 lines
352 B
Makefile
Raw Normal View History

all:
make slide slideshow
slide:
pandoc -t beamer async.md -f markdown-implicit_figures -V colorlinks=true -V linkcolor=blue -V urlcolor=red -o async.pdf
slideshow:
pandoc -t beamer async.md -f markdown-implicit_figures -V colorlinks=true -V linkcolor=blue -V urlcolor=red -i -o async-slideshow.pdf
view:
zathura --mode=presentation async.pdf &