From cf1c1386b1483983f9393383cdc4c60bc1b69379 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Mon, 25 Jun 2012 20:30:25 +0200 Subject: Small modification of Makefile --- 2012/Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to '2012') diff --git a/2012/Makefile b/2012/Makefile index a3d45de..2b3113c 100644 --- a/2012/Makefile +++ b/2012/Makefile @@ -45,18 +45,21 @@ $(minutes1).pdf: $(minutes1).tex ../preamble/preamble.tex while egrep -s 'Rerun (LaTeX|to get cross-references right)' $(minutes1).log && [ $$latex_count -gt 0 ] ;\ do echo "Rerunning latex...." ; pdflatex $(minutes1).tex; latex_count=`expr $$latex_count - 1`; done -send: # sends to fripost.org for publication + # Sends to fripost.org for publication +send: umask 022 rsync -ruvp --chmod=Dugo+rx,Fugo+r *.pdf fripost@fripost.org:fripost.org/minutes/ # Debuging and testing send-test: test.d/test umask 022 - rsync -ruvp --chmod=Dugo+rx,Fugo+r rsync -ruvp test.d/ fripost@fripost.org:fripost.org/minutes/ + rsync -ruvp --chmod=Dugo+rx,Fugo+r test.d/ fripost@fripost.org:fripost.org/minutes/ test.d/test: test.d echo This is the test file for fripost-web. > test.d/test test.d: mkdir test.d +# Clean up clean: - rm *.aux *.bbl *.dvi *.log *.nav *.out *.snm *.toc *~ + rm *.aux *.bbl *.dvi *.log *.nav *.out *.snm *.toc *~; rm -f test test.d/test; rmdir test.d + -- cgit v1.2.3