diff options
Diffstat (limited to 'introduzione_foss/slides/Makefile')
-rw-r--r-- | introduzione_foss/slides/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/introduzione_foss/slides/Makefile b/introduzione_foss/slides/Makefile new file mode 100644 index 0000000..5385214 --- /dev/null +++ b/introduzione_foss/slides/Makefile @@ -0,0 +1,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 |