diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2016-12-12 18:35:54 +0100 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2018-04-28 19:04:12 +0200 |
commit | 0626aa098df862af8c77c12c402e2a6e2182b178 (patch) | |
tree | 76aa5580f7590d21474752ee84ac00dc581ffaec /2016/Makefile | |
parent | a0ced67a803f1c7bce3e53082d51e25378a4496d (diff) |
Minutes for October 24 written
The minutes are written for October 24.
*TODO Query aproval from LJO.*
Författare: Gustav Eek <gustav.eek@fripost.org>
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 |