diff options
author | Gustav Eek <gustav.eek@proceranetworks.com> | 2014-02-12 20:53:08 +0100 |
---|---|---|
committer | Gustav Eek <gustav.eek@proceranetworks.com> | 2014-02-13 07:20:36 +0100 |
commit | 65c47dfeb7ef9a8ffae7b0dc407548cb4b5d0b18 (patch) | |
tree | ca68eb757039c70c48ce7357bf19596a1214a548 /2014/Makefile | |
parent | 789e778f5dec7ce6c3c231916001e6527e7c230a (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/Makefile')
-rw-r--r-- | 2014/Makefile | 17 |
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 |