From: Andrew Chilton Date: Thu, 21 Jan 2010 23:00:36 +0000 (+1300) Subject: Add a Makefile to make some tasks easy X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=759db5cf23cabbe65972ad1b2f5cfd328c67226b;p=cil.git Add a Makefile to make some tasks easy --- diff --git a/Makefile b/Makefile new file mode 100644 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