From 9f4f29bcc60ba90f421d254ef8ac8776d5b15dbf Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Sun, 28 Apr 2013 17:48:25 +0200 Subject: Flyer created for May Day 2013 LaTex is used. The text is basically taken from the may day last year ... as well as the logo. --- 2013/mayday/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 2013/mayday/Makefile (limited to '2013/mayday/Makefile') diff --git a/2013/mayday/Makefile b/2013/mayday/Makefile new file mode 100644 index 0000000..7a74887 --- /dev/null +++ b/2013/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