
all: inertiapre.pdf

FIGS =

%.pdf: %.tex $(FIGS)
	pdflatex $<
	pdflatex $<

%.pdf: %.gnuplot settings.gnuplot
	cat settings.gnuplot $< | iconv -f utf8 -t iso8859-15 | gnuplot | epstopdf --filter > $@

%.pdf: %.eps
	epstopdf $< --outfile=$@

%.pdf: %.svg
	inkscape --export-pdf=$@ $<

