From 1e48b4bf03f047a497988954241666cc6ec65215 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Mon, 12 Oct 2015 20:10:32 +0200 Subject: [flyers] Flyer moved to a new folder -- better structure --- flyers/mayday/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 flyers/mayday/Makefile (limited to 'flyers/mayday/Makefile') diff --git a/flyers/mayday/Makefile b/flyers/mayday/Makefile new file mode 100644 index 0000000..7a74887 --- /dev/null +++ b/flyers/mayday/Makefile @@ -0,0 +1,13 @@ +SHELL=/bin/bash + +flyer-1-may-2013.pdf: master.tex preamble.tex frontside.tex backside.tex + latex_count=5 ;\ + latex_log=$$(echo $< | sed 's/.tex/.log/') ;\ + pdflatex $< ;\ + while egrep -s 'Rerun (LaTeX|to get cross-references right)' $$latex_log && [ $$latex_count -gt 0 ] ;\ + do echo "Rerunning latex...." ; pdflatex $< ;\ + latex_count=`expr $$latex_count - 1`;\ + done; + mv -v $$(echo $< | sed 's/.tex/.pdf/') $@ + + -- cgit v1.2.3