Makefile 384 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
install:
14
	cd cmd/ipfs && go install
15

16 17 18 19 20
test: test_go test_sharness

test_go:
	go test ./...

21
test_sharness:
22
	cd test/ && make