Add Makefiles and simple test suite

This commit is contained in:
Alexander Neumann
2014-08-05 23:13:19 +02:00
parent f45a9c8e9f
commit ab602b88de
5 changed files with 112 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
.PHONY: clean all test
test:
go test
$(MAKE) -C cmd/khepri
test/run.sh cmd/khepri/khepri
clean:
go clean
$(MAKE) -C cmd/khepri test