diff options
author | Gustav Eek <gustav.eek@etraveli.com> | 2016-12-12 18:35:54 +0100 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2018-04-30 17:09:48 +0200 |
commit | e61a84bc75692a9ec14428f5ebe60daa06dbdb19 (patch) | |
tree | 7d80b2f3c3838bc5f6262847677353e6f015e694 /2016/Makefile | |
parent | b1840ae65c803ed48a522065aa5cdcbc80525e59 (diff) |
Minutes for October 24 written
The minutes are written for October 24.
*TODO Query aproval from LJO.*
Diffstat (limited to '2016/Makefile')
-rw-r--r-- | 2016/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2016/Makefile b/2016/Makefile new file mode 100644 index 0000000..744b478 --- /dev/null +++ b/2016/Makefile @@ -0,0 +1,19 @@ +# Makefile for minutes of 2016 + +MINUTES = \ +2016-06-13-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 |