diff options
author | Gustav Eek <gustav@fripost.org> | 2016-06-14 19:28:28 +0200 |
---|---|---|
committer | Gustav Eek <gustav@fripost.org> | 2016-06-14 19:32:30 +0200 |
commit | da4fb6c0a7c834ca99843d56023559ed524b117a (patch) | |
tree | 32ad3b5fd29e98cec87ab45fc2867e1aea07038d /2016/Makefile | |
parent | ed05e322a800117763c4ffb88193bf7bac8f0d94 (diff) |
Initial commit on minutes for 14 june 2016ge/2016-06-14-board
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 |