Skip to content

Commit cadd956

Browse files
Microzuul CIGerrit Code Review
authored andcommitted
Merge "Add clean target to the makefile"
2 parents 8411308 + 2b1fffb commit cadd956

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ all: build test
5151
help: ## Display this help.
5252
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_0-9-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
5353

54+
.PHONY: clean
55+
clean: ## Cleanup the local env
56+
@rm -f $(LOCALBIN)/staticcheck $(LOCALBIN)/operator-sdk
57+
5458
##@ Development
5559

5660
.PHONY: manifests

0 commit comments

Comments
 (0)