blob: 48e0643495e6a88bcdf1073a174da9a5d31810bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Makefile for minutes of 2016
MINUTES = \
2016-04-17-annual \
common-makefile = ../resources/Makefile-common
help:
@make -s -f $(common-makefile) help
all: $(MINUTES)
%:
make -f $(common-makefile) compile FILE=$*
annual-job = 2016-04-17-annual
annual-tex = \
../annual-reports/annual-report-2016 \
../operational-plans/operational-plan-2016
annual-pdf = \
../annual-reports/economical-report-2016 \
../annual-reports/auditors-report-2016
$(annual-job):
make -f $(common-makefile) compile FILE=$(annual-job) FILES_TEX="$(annual-tex)" FILES_PDF="$(annual-pdf)"
send:
make -f $(common-makefile) send SEND_FILES="$(MINUTES)"
clean:
make -f $(common-makefile) clean
|