diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2019-02-24 00:03:18 +0100 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2019-02-24 00:03:18 +0100 |
commit | 734005fcca791f670f1eb84de043800dcc130f37 (patch) | |
tree | c4210688aa022cc3d27fe5de0edf01516f317eb4 /2019/Makefile | |
parent | 7c1b34cf734bce0b194a559298f81ad888a7e585 (diff) |
Makefile added for year 2019 minutes
Diffstat (limited to '2019/Makefile')
-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 |