blob: 33cea24bdf4e0524dda1370ef845aff9cc3ae6f4 [file] [log] [blame]
GOSRC = $(wildcard *.go)
all: kati go_test
kati: $(GOSRC)
env $(shell go env) go build -o $@ .
go_test: $(GOSRC)
env $(shell go env) go test .
test: all go_test
ruby runtest.rb
clean:
rm -rf out kati
.PHONY: test