Makefile 473 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
# TODO remove ipfs2 once new command refactoring is complete
14 15
install:
	cd cmd/ipfs && go install
16
	cd cmd/ipfs2 && go install
17 18 19 20 21 22

test: test_go test_sharness

test_go:
	go test ./...

23
test_sharness:
24
	cd test/ && make