add .PHONY to clean target

pull/289/head
Morgan Bauer 2016-07-07 11:29:31 -07:00
parent a5a666c1c4
commit a390bd3c47
No known key found for this signature in database
GPG Key ID: 23F15C502128F348
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,6 @@ else
GOPATH := $(shell pwd)/_gopath
endif
# Use system python if it exists, otherwise use Docker.
PYTHON := $(shell command -v python || echo "docker run --rm -it -v $(shell pwd):/minikube -w /minikube python python")
BUILD_OS := $(shell uname -s)
@ -82,6 +81,7 @@ $(GOPATH)/bin/go-bindata:
$(MKGOPATH)
go get github.com/jteeuwen/go-bindata/...
.PHONY: clean
clean:
rm -rf $(GOPATH)
rm -rf $(BUILD_DIR)