blob: a83c8322137e46fbd9c0a7dd6c01fb0cfce3e968 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Makefile for minutes of 2015
MINUTES = \
2015-01-26-board \
2015-02-23-board
common-makefile = ../resources/Makefile-common
help:
@make -s -f $(common-makefile) help
all: $(MINUTES)
%:
make -f $(common-makefile) compile FILE=$*
send:
make -f $(common-makefile) send SEND_FILES="$(MINUTES)"
clean:
make -f $(common-makefile) clean
|