diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2025-09-14 13:01:59 +0200 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2025-09-14 13:01:59 +0200 |
commit | 5ca8aeeeb466533f43f0edbe097112a8fc4c9078 (patch) | |
tree | 66550e03923469b320f59d639f760faad242274d /introduzione_foss/slides/Makefile | |
parent | 0d3fd7f3a31b512ad125c83c9c6d1ff3423f263d (diff) |
New slides: Introduction to FOSS (in Italian)
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 |