mirror of
https://github.com/waku-org/go-multiaddr.git
synced 2025-02-24 03:58:17 +00:00
17 lines
336 B
Makefile
17 lines
336 B
Makefile
|
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
|
||
|
|
||
|
dep:
|
||
|
cd multiaddr && go get ./...
|