From: Don Armstrong Date: Tue, 4 Aug 2015 22:38:50 +0000 (-0500) Subject: make makefile more compact since we use it directly in the presentation X-Git-Url: https://git.donarmstrong.com/?p=using_make_for_science.git;a=commitdiff_plain;h=a2700242e62a67a819c1b9164e9d5f725078e3d0 make makefile more compact since we use it directly in the presentation --- diff --git a/Makefile b/Makefile index 128cb19..4cacffb 100644 --- a/Makefile +++ b/Makefile @@ -2,18 +2,11 @@ all: using_make_for_science.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('$<')" + R --encoding=utf-8 -e \ + "library('knitr'); knit('$<')" %.pdf: %.tex $(wildcard *.bib) $(wildcard *.tex) - latexmk -pdf -pdflatex='xelatex -shell-escape -8bit -interaction=nonstopmode %O %S' -bibtex -use-make $< + latexmk -pdf \ + -pdflatex='xelatex -shell-escape -8bit -interaction=nonstopmode %O %S' \ + -bibtex -use-make $<