blob: d3ae081a8bf368dc57b85663a1c54f8ef9dceeab (
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
|
# Makefile for minutes of 2015
MINUTES = \
2015-01-26-board \
2015-02-23-board \
2015-03-22-annual \
2015-03-25-board \
2015-04-28-board \
common-makefile = ../resources/Makefile-common
help:
@make -s -f $(common-makefile) help
all: $(MINUTES)
%:
make -f $(common-makefile) compile FILE=$*
2015-03-23-annual: 2015-03-23-annual.tex ../annual-reports/annual-report-2015.tex ../operational-plans/operational-plan-2015.tex ../annual-reports/economical-report-2015.pdf ../annual-reports/revision2014_fripost.pdf
make -f $(common-makefile) compile FILE=2015-03-23-annual FILES_TEX="../annual-reports/annual-report-2015 ../operational-plans/operational-plan-2015" FILES_PDF="../annual-reports/economical-report-2015 ../annual-reports/revision2014_fripost"
send:
make -f $(common-makefile) send SEND_FILES="$(MINUTES)"
clean:
make -f $(common-makefile) clean
|