From efe4e05665db0327cc6fc12c91fc50fe8c629ab7 Mon Sep 17 00:00:00 2001 From: Juan Batiz-Benet Date: Fri, 7 Nov 2014 14:46:15 -0800 Subject: [PATCH] added install + tests to toplevel --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Makefile b/Makefile index a6496bd45..1b6b93e52 100644 --- a/Makefile +++ b/Makefile @@ -9,3 +9,15 @@ godep: # ./... performs operation on all packages in tree vendor: godep godep save -r ./... + + +install: + cd cmd/ipfs && go install + +test: test_go test_sharness + +test_go: + go test ./... + +test_sharness: install + cd test/ && make