aboutsummaryrefslogtreecommitdiffstats
path: root/annual-reports/Makefile
blob: 7560a1eeb81da4024c77e76ba4c5e7b71271f1af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
ALL = \
  annual-report-2018.pdf \
  economical-report-2018.pdf \
  auditors-report-2018.pdf \

all : $(ALL)

annual-report-2018.pdf: annual-report-2018-master.tex annual-report-2018.tex
	pdflatex -jobname=$(basename $@) annual-report-2018-master.tex

economical-report-2018.pdf: ../resources/dummy.tex
	pdflatex -jobname=$(basename $@) $<

auditors-report-2018.pdf: ../resources/dummy.tex
	pdflatex -jobname=$(basename $@) $<

clean:
	rm -fr $(ALL)