Files
docker-machine/mk/dev.mk
Kazumichi Yamamoto 3363a49ffc Change godep command call to use the GODEP variable
Signed-off-by: Kazumichi Yamamoto <yamamoto.febc@gmail.com>
2015-11-14 15:54:31 +09:00

10 lines
269 B
Makefile

dep-save:
$(if $(GODEP), , \
$(error Please install godep: go get github.com/tools/godep))
$(GODEP) save $(shell go list ./... | grep -v vendor/)
dep-restore:
$(if $(GODEP), , \
$(error Please install godep: go get github.com/tools/godep))
$(GODEP) restore -v