From 65c47dfeb7ef9a8ffae7b0dc407548cb4b5d0b18 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Wed, 12 Feb 2014 20:53:08 +0100 Subject: 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. --- 2014/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 2014/Makefile (limited to '2014') 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 -- cgit v1.2.3