11 lines
231 B
Makefile
11 lines
231 B
Makefile
all: mindfulness_the_game.pdf
|
|
|
|
mindfulness_the_game.pdf : mindfulness_the_game.md
|
|
pandoc --pdf-engine=xelatex \
|
|
-V papersize:letter \
|
|
-o mindfulness_the_game.pdf \
|
|
mindfulness_the_game.md
|
|
|
|
clean:
|
|
rm *.pdf
|