From adc1ae8fe14d33062931f32304f52acfb967f28e Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Thu, 7 May 2020 22:05:21 +0200 Subject: Annual 2020. Inital on annual report incl members section --- annual-reports/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'annual-reports/Makefile') diff --git a/annual-reports/Makefile b/annual-reports/Makefile index f05651b..c87a7f8 100644 --- a/annual-reports/Makefile +++ b/annual-reports/Makefile @@ -1,4 +1,5 @@ ALL = \ + annual-report-2020-of-2019.pdf \ annual-report-2019.pdf \ economical-report-2019.pdf \ auditors-report-2019.pdf \ @@ -8,6 +9,14 @@ 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 + pandoc -f markdown -t latex < $< > $@ + annual-report-2019.pdf: annual-report-2019-master.tex annual-report-2019.tex pdflatex -jobname=$(basename $@) annual-report-2019-master.tex -- cgit v1.2.3 From 408688c700604300ed876cea7802ffedf0e2674b Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Sun, 10 May 2020 11:39:28 +0200 Subject: Annual 2020. Makefile update --- annual-reports/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'annual-reports/Makefile') diff --git a/annual-reports/Makefile b/annual-reports/Makefile index c87a7f8..75e1146 100644 --- a/annual-reports/Makefile +++ b/annual-reports/Makefile @@ -15,7 +15,10 @@ all : $(ALL) pdflatex -jobname=$(basename $@) $< %._.tex: %.mdwn - pandoc -f markdown -t latex < $< > $@ + cat < $< |\ + sed -f ../preamble/acronyms.sed -f ../preamble/attendants.sed |\ + pandoc -f markdown -t latex \ + > $@ annual-report-2019.pdf: annual-report-2019-master.tex annual-report-2019.tex pdflatex -jobname=$(basename $@) annual-report-2019-master.tex -- cgit v1.2.3 From 9db61bbb6590843cdc7c967624a2b45824dd1a05 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Sun, 10 May 2020 11:57:50 +0200 Subject: Annual 2020. Makefile update --- annual-reports/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'annual-reports/Makefile') 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 -- cgit v1.2.3 From da9eb01d65a124afedfcee720ad003d723fd19d9 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Sat, 23 May 2020 11:00:09 +0200 Subject: S with annual report Makefile. Update Makefile TODO Replace cp with symlinks. --- annual-reports/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'annual-reports/Makefile') diff --git a/annual-reports/Makefile b/annual-reports/Makefile index 3d6e5f5..d7225f6 100644 --- a/annual-reports/Makefile +++ b/annual-reports/Makefile @@ -1,5 +1,6 @@ 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 \ @@ -21,6 +22,9 @@ all : $(ALL) 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 @@ -31,7 +35,7 @@ auditors-report-2019.pdf: revision2018.pdf cp $< $@ auditors-report-2020-of-2019.pdf: revision2019.pdf - cp $< $@ + ln -s $< $@ annual-report-2018.pdf: annual-report-2018-master.tex annual-report-2018.tex pdflatex -jobname=$(basename $@) annual-report-2018-master.tex -- cgit v1.2.3