diff options
author | Gustav Eek <gustav@fripost.org> | 2015-03-02 17:43:42 +0100 |
---|---|---|
committer | Gustav Eek <gustav@fripost.org> | 2015-03-02 21:58:29 +0100 |
commit | 98883dabb17df16e397f93c8fe5f8dea83db2053 (patch) | |
tree | 34ede5b44de1641d7ae4a6ca52196626c5fbc425 /2015/Makefile | |
parent | 2784a5345920940253a0501041a0b101df952a0b (diff) |
February 23 meeting minutes started
Leif-Jöran has an update on the virtual machine design that should go
into the minutes.
Diffstat (limited to '2015/Makefile')
-rw-r--r-- | 2015/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2015/Makefile b/2015/Makefile new file mode 100644 index 0000000..d6fedc1 --- /dev/null +++ b/2015/Makefile @@ -0,0 +1,17 @@ +# Makefile for minutes of 2014 + +MINUTES = 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 |