]> git.donarmstrong.com Git - lib.git/blob - templates/makefiles/sweave_rules.mk
add some makefile templates
[lib.git] / templates / makefiles / sweave_rules.mk
1 R ?= R
2
3 %.pdf: %.svg
4         inkscape -A $@ $<
5         pdfcrop $@
6         mv $(dir $@)*-crop.pdf $@
7
8 %.png: %.svg
9         inkscape -e $@ -d 300 $<
10
11 %.tex: %.Rnw
12         $(R) CMD Sweave --encoding=utf-8 $<
13
14 %.pdf: %.tex $(wildcard *.bib) $(wildcard *.tex)
15         latexmk -pdflatex=xelatex -bibtex -use-make -pdf $<