diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2019-02-23 23:51:53 +0100 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2019-02-23 23:51:53 +0100 |
commit | 7c1b34cf734bce0b194a559298f81ad888a7e585 (patch) | |
tree | 247198902d9e89ccefdfd566da639097ece24aa4 /agenda/Makefile | |
parent | 2685b3b5d6e743c2b5b522a2d67044a2f70fcb72 (diff) |
Agenda Makefile update
Diffstat (limited to 'agenda/Makefile')
-rw-r--r-- | agenda/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/agenda/Makefile b/agenda/Makefile index a518a72..f84ffb6 100644 --- a/agenda/Makefile +++ b/agenda/Makefile @@ -2,6 +2,8 @@ # # Gustav Eek 2011 +common-makefile = ../resources/Makefile-common + all: \ board-meeting-agenda.pdf \ yearly-meeting-agenda.pdf \ @@ -14,8 +16,7 @@ yearly-meeting-agenda.pdf \ do echo "Rerunning latex...." ; pdflatex $<; latex_count=`expr $$latex_count - 1`; done send: # sends to fripost.org for publication - umask 022 ;\ - rsync -ruvp --chmod=Dugo+rx,Fugo+r *.pdf www.fripost.org:/var/www/fripost.org/minutes + make -f $(common-makefile) send SEND_FILES="$(all)" clean: rm *.aux *.bbl *.dvi *.log *.nav *.out *.snm *.toc *~ |