diff options
Diffstat (limited to 'annual-reports/Makefile')
-rw-r--r-- | annual-reports/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/annual-reports/Makefile b/annual-reports/Makefile index f05651b..d7225f6 100644 --- a/annual-reports/Makefile +++ b/annual-reports/Makefile @@ -1,4 +1,7 @@ ALL = \ + annual-report-2020-of-2019.pdf \ + economical-report-2020-of-2019.pdf \ + auditors-report-2020-of-2019.pdf \ annual-report-2019.pdf \ economical-report-2019.pdf \ auditors-report-2019.pdf \ @@ -8,6 +11,20 @@ ALL = \ all : $(ALL) +%.pdf: %.main.tex %._.tex + pdflatex -jobname=$(basename $@) $< + ! grep -q "Rerun to get cross-references right" $(basename $@).log || \ + pdflatex -jobname=$(basename $@) $< + +%._.tex: %.mdwn + cat < $< |\ + sed -f ../preamble/acronyms.sed -f ../preamble/attendants.sed |\ + pandoc -f markdown -t latex \ + > $@ + +economical-report-2020-of-2019.pdf: Balans-och-resultat-2019.pdf + ln -s $< $@ + annual-report-2019.pdf: annual-report-2019-master.tex annual-report-2019.tex pdflatex -jobname=$(basename $@) annual-report-2019-master.tex @@ -17,6 +34,9 @@ economical-report-2019.pdf: Balans-och-resultat-2018-fripost.pdf auditors-report-2019.pdf: revision2018.pdf cp $< $@ +auditors-report-2020-of-2019.pdf: revision2019.pdf + ln -s $< $@ + annual-report-2018.pdf: annual-report-2018-master.tex annual-report-2018.tex pdflatex -jobname=$(basename $@) annual-report-2018-master.tex @@ -28,3 +48,10 @@ auditors-report-2018.pdf: revision2017.pdf clean: rm -fr $(ALL) + +SEND_FILES = \ + $(wildcard *-report-*-of-*.pdf) + +send: + rsync -ruvp --chmod=Dugo+rx,Fugo+r $(SEND_FILES) www.fripost.org:/var/www/fripost.org/minutes + @echo; echo Now avialable as; for f in $(SEND_FILES); do echo " - https://fripost.org/minutes/$$f"; done |