blob: 30ae73d182be3767f18814571151165f86c4c85e [file] [log] [blame]
GOSRC = $(wildcard *.go)
all: kati go_test para
kati: $(GOSRC)
env $(shell go env) go build -o $@ *.go
go_test: $(GOSRC) para
env $(shell go env) go test *.go
para: para.cc
$(CXX) -std=c++11 -g -O -W -Wall -MMD -o $@ $<
test: all
ruby runtest.rb
clean:
rm -rf out kati
.PHONY: test
-include *.d