diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..13f25e8e --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +.PHONY: all test get_deps + +all: test get_deps install + +install: + go install github.com/tendermint/tmsp/cmd/... + +test: + go test github.com/tendermint/tmsp/... + +get_deps: + go get -d github.com/tendermint/tmsp/...