blob: 0ebd26b85ffe70ee3361e7794f3e28d6607e74d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Makefile for minutes of 2014
MINUTES = 2014-02-11-board 2014-05-19-board 2014-05-19-board-excerpt
common-makefile = ../resources/Makefile-common
help:
@make -s -f $(common-makefile) help
all: $(MINUTES)
$(MINUTES):
make -f $(common-makefile) compile FILE=$@
send:
make -f $(common-makefile) send SEND_FILES="$(MINUTES)"
clean:
make -f $(common-makefile) clean
|