blob: 3836be3d160f7ba21026b3c3f5cc38d3a3068303 (
plain)
1
2
3
4
5
6
7
8
9
10
|
all: build/my_phone_runs_debian_btw.pdf
build/my_phone_runs_debian_btw.pdf: my_phone_runs_debian_btw.rst img/
mkdir -p build
pandoc --listings -t beamer --pdf-engine=xelatex \
-o build/my_phone_runs_debian_btw.pdf \
my_phone_runs_debian_btw.rst
clean:
rm -f build/my_phone_runs_debian_btw.pdf
|