diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2020-05-10 11:57:50 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2020-05-10 11:57:50 +0200 |
commit | 9db61bbb6590843cdc7c967624a2b45824dd1a05 (patch) | |
tree | 3f68d9d3f64458323251049b799822057d63f9b6 /annual-reports/Makefile | |
parent | b9ef01c83927fb7326a4a0e60fdbd85288fa982b (diff) |
Annual 2020. Makefile update
Diffstat (limited to 'annual-reports/Makefile')
-rw-r--r-- | annual-reports/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/annual-reports/Makefile b/annual-reports/Makefile index 75e1146..3d6e5f5 100644 --- a/annual-reports/Makefile +++ b/annual-reports/Makefile @@ -1,5 +1,6 @@ ALL = \ annual-report-2020-of-2019.pdf \ + auditors-report-2020-of-2019.pdf \ annual-report-2019.pdf \ economical-report-2019.pdf \ auditors-report-2019.pdf \ @@ -29,6 +30,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 + cp $< $@ + annual-report-2018.pdf: annual-report-2018-master.tex annual-report-2018.tex pdflatex -jobname=$(basename $@) annual-report-2018-master.tex @@ -40,3 +44,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 |