aboutsummaryrefslogtreecommitdiffstats
path: root/2014
diff options
context:
space:
mode:
authorGustav Eek <gustav.eek@proceranetworks.com>2014-02-12 20:53:08 +0100
committerGustav Eek <gustav.eek@proceranetworks.com>2014-02-13 07:20:36 +0100
commit65c47dfeb7ef9a8ffae7b0dc407548cb4b5d0b18 (patch)
treeca68eb757039c70c48ce7357bf19596a1214a548 /2014
parent789e778f5dec7ce6c3c231916001e6527e7c230a (diff)
New makefile procedure added for 2014
The procedure consists of that a common makefile holds all crucial procedures. The makefiles in the different directories are just wrappers. This commit contains those modifications for 2014. It remains to implement the same for previous years.
Diffstat (limited to '2014')
-rw-r--r--2014/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/2014/Makefile b/2014/Makefile
new file mode 100644
index 0000000..fc286bb
--- /dev/null
+++ b/2014/Makefile
@@ -0,0 +1,17 @@
+# Makefile for minutes of 2014
+
+MINUTES = 2014-02-11-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