Makefile 385 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
all:
	# no-op

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 ./...
12 13 14 15 16 17 18 19 20 21


install:
	cd cmd/ipfs && go install

test: test_go test_sharness

test_go:
	go test ./...

22
test_sharness:
23
	cd test/ && make