#!/bin/make all: kinetic_formalism.pdf R=R %.pdf: %.svg inkscape -A $@ $< pdfcrop $@ mv $(dir $@)*-crop.pdf $@ %.png: %.svg inkscape -e $@ -d 300 $< %.pdf: %.png bmeps -lpdf -olevel=1.4 $< $@ %.tex: %.Rnw $(R) CMD Sweave $< %.pdf: %.tex $(wildcard *.bib) $(wildcard *.tex) rubber -fd $< clean: rubber -d --clean *.tex rm -f *.tmp .PHONY: clean all .DELETE_ON_ERROR: %.tex