Skip to content

Commit

Permalink
Add go clean for Makefile (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
shanhuhai5739 authored and iyangsj committed Dec 10, 2019
1 parent 7bb4d05 commit e3ef4c1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ GOTEST := $(GO) test
GOVET := $(GO) vet
GOGET := $(GO) get
GOGEN := $(GO) generate
GOCLEAN := $(GO) clean

# init bfe version
BFE_VERSION ?= $(shell cat VERSION)
Expand Down Expand Up @@ -70,6 +71,7 @@ package:

# make clean
clean:
$(GOCLEAN)
rm -rf $(OUTDIR)
rm -rf $(WORKROOT)/bfe
rm -rf $(GOPATH)/pkg/linux_amd64
Expand Down

0 comments on commit e3ef4c1

Please sign in to comment.