diff options
author | Gustav Eek <gustav@fripost.org> | 2015-03-08 15:22:00 +0100 |
---|---|---|
committer | Gustav Eek <gustav@fripost.org> | 2015-03-08 15:22:00 +0100 |
commit | af01af52df453294ed7db36fe8ea4d021d07930b (patch) | |
tree | 8af7dd8f77e5989a7e4de885702688ff09d561e2 /2015/Makefile | |
parent | 1d5cf0f448b08d398f7edee472815844926e5de4 (diff) | |
parent | 8864329adc31391babc106799934395fc6190d65 (diff) |
Merge branch 'feb-23-2015', containing Jan 26 and Feb 23 minutes
Diffstat (limited to '2015/Makefile')
-rw-r--r-- | 2015/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2015/Makefile b/2015/Makefile new file mode 100644 index 0000000..a83c832 --- /dev/null +++ b/2015/Makefile @@ -0,0 +1,19 @@ +# Makefile for minutes of 2015 + +MINUTES = \ +2015-01-26-board \ +2015-02-23-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 |