diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2018-04-30 17:25:26 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2018-04-30 17:25:26 +0200 |
commit | d088b6db81ceca6bd5982bfbf6230e0c4530def7 (patch) | |
tree | 7f5dcfdb6edce92c4fe6ab956263c59856d8ae5d /2018/Makefile | |
parent | c6bbe516195f412837e6004b551bf78ab235fef6 (diff) | |
parent | e2b17e3955fd77d9d08d8a3b53094b8658517848 (diff) |
Merge branch 'master' into intgr/2017 for send updateintgr/2017ge/2017-06-26-board
Diffstat (limited to '2018/Makefile')
-rw-r--r-- | 2018/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2018/Makefile b/2018/Makefile new file mode 100644 index 0000000..ab9586a --- /dev/null +++ b/2018/Makefile @@ -0,0 +1,19 @@ +# Makefile for minutes of 2016 + +MINUTES = \ +2018-01-22-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 |