8 lines
117 B
Makefile
8 lines
117 B
Makefile
all: presentation.pdf
|
|
|
|
presentation.pdf: presentation.md
|
|
pandoc $^ -t beamer -o $@
|
|
|
|
clean:
|
|
rm -rf presentation.pdf
|