From 12f451f687b588f31a96de24b678c83688139415 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Sat, 23 Aug 2014 09:04:12 -0700 Subject: [PATCH] add start of debconf14 presentation --- debconf14/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 debconf14/Makefile diff --git a/debconf14/Makefile b/debconf14/Makefile new file mode 100644 index 0000000..b244505 --- /dev/null +++ b/debconf14/Makefile @@ -0,0 +1,19 @@ +#!/usr/bin/make -f + +all: debbugs_presentation.pdf + +R ?= R + +%.pdf: %.svg + inkscape -A $@ $< + pdfcrop $@ + mv $(dir $@)*-crop.pdf $@ + +%.png: %.svg + inkscape -e $@ -d 300 $< + +%.tex: %.Rnw + $(R) --encoding=utf-8 -e "library('knitr'); knit('$<')" + +%.pdf: %.tex $(wildcard *.bib) $(wildcard *.tex) + latexmk -pdf -pdflatex='xelatex -interaction=nonstopmode %O %S' -bibtex -use-make $< -- 2.39.2