github.com/keltia/go-ipfs@v0.3.8-0.20150909044612-210793031c63/test/dependencies/Makefile (about) 1 2 all: restore 3 4 restore: 5 @echo "*** $@ ***" 6 which godep 7 mkdir -p tmp_gopath 8 OLD_GOPATH="$$GOPATH" 9 export GOPATH=$$(pwd)/tmp_gopath 10 cd ../.. 11 godep restore 12 cd - 13 rm -rf tmp_gopath 14 export GOPATH="$$OLD_GOPATH" 15 16 .PHONY: all restore