go-multiaddr/Makefile

20 lines
374 B
Makefile
Raw Normal View History

2014-11-19 13:51:41 -08:00
all: install
godep:
go get github.com/tools/godep
# saves/vendors third-party dependencies to Godeps/_workspace
# -r flag rewrites import paths to use the vendored path
# ./... performs operation on all packages in tree
vendor: godep
godep save -r ./...
install: dep
cd multiaddr && go install
2015-01-12 11:23:52 -08:00
test:
2015-01-20 11:53:12 -08:00
go test -race -cpu=5 -v ./...
2015-01-12 11:23:52 -08:00
2014-11-19 13:51:41 -08:00
dep:
cd multiaddr && go get ./...