1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-08-06 19:44:01 +08:00
Files
kubo/test/dependencies/GNUmakefile
Steven Allen 1de768fb8f fix: require gmake
IPFS doesn't build correctly under non-GNU make implementations.
2019-08-01 12:18:56 -07:00

17 lines
236 B
Makefile

all: restore
restore:
@echo "*** $@ ***"
which godep
mkdir -p tmp_gopath
OLD_GOPATH="$$GOPATH"
export GOPATH=$$(pwd)/tmp_gopath
cd ../..
godep restore
cd -
rm -rf tmp_gopath
export GOPATH="$$OLD_GOPATH"
.PHONY: all restore