diff options
author | Gustav Eek <gustav.eek@etraveli.com> | 2017-08-14 20:34:48 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2018-04-30 17:23:29 +0200 |
commit | 2f8c8d2afb364c999f28a7df105c16b82a26f0d6 (patch) | |
tree | 4d0caf137a5fbedfa3aa4d3215d9439ac9d8e3e8 /2017/Makefile | |
parent | ad33c470cc6f8878afd24133f4ffd1db7acff5ca (diff) |
Minutes written for the June 6, 2017 board meeting (done)
Diffstat (limited to '2017/Makefile')
-rw-r--r-- | 2017/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2017/Makefile b/2017/Makefile new file mode 100644 index 0000000..522145a --- /dev/null +++ b/2017/Makefile @@ -0,0 +1,19 @@ +# Makefile for minutes of 2016 + +MINUTES = \ +2017-06-26-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 |