diff options
| -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  | 
