diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2019-05-04 10:17:59 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2019-05-04 10:17:59 +0200 |
commit | 71071120a4b90aaaf8e44596121cd298f7ecae4c (patch) | |
tree | 79bb283c837d04df02677ed004d1cc3d66edc455 /2019 | |
parent | ae2e2bdb68d8d3a5b1a0acf1b3f547600c6c699f (diff) | |
parent | 0e578f49ab5c47b5b2722bfa491aa3c8099978fb (diff) |
Merge branch 'master' into 2018-05-28-board
Diffstat (limited to '2019')
-rw-r--r-- | 2019/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2019/Makefile b/2019/Makefile new file mode 100644 index 0000000..352154d --- /dev/null +++ b/2019/Makefile @@ -0,0 +1,19 @@ +# Makefile for minutes of 2019 + +MINUTES = \ + + +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 |