aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFumitoshi Ukai <ukai@chromium.org>2015-03-30 16:52:41 +0900
committerFumitoshi Ukai <ukai@chromium.org>2015-03-30 16:52:41 +0900
commit119dc912cfe6fceec9992fd04b5bb046af60129e (patch)
treeb431718bd98e588f8c18cef3e33552b294b392ca /Makefile
downloadkati-119dc912cfe6fceec9992fd04b5bb046af60129e.tar.gz
kati: initial commit (from hamaji)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..23de2e6
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+GOSRC = $(wildcard *.go)
+
+all: kati
+
+kati: $(GOSRC)
+ env $(shell go env) go build -o $@ .
+
+test:
+ ruby runtest.rb
+
+.PHONY: test