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