]> git.mjollnir.org Git - cil.git/commitdiff
Add a Makefile to make some tasks easy
authorAndrew Chilton <andychilton@gmail.com>
Thu, 21 Jan 2010 23:00:36 +0000 (12:00 +1300)
committerAndrew Chilton <andychilton@gmail.com>
Thu, 21 Jan 2010 23:00:36 +0000 (12:00 +1300)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..614042a
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+issue-summary:
+       cil summary --is-open --label=Milestone-v0.06
+
+issue-list:
+       cil list --is-open --label=Milestone-v0.06
+
+clean:
+       find . -name '*~' -exec rm {} ';'
+
+.PHONY: issue-summary issue-list clean