Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Commit

Permalink
fix(make): split clean-go
Browse files Browse the repository at this point in the history
  • Loading branch information
paralta committed Sep 21, 2023
1 parent 21a799c commit 67e29a0
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,20 @@ e2e: docker-apiserver docker-cli docker-orchestrator docker-ui docker-ui-backend
clean-ui:
@(rm -rf ui/build ; echo "UI cleanup done" )

.PHONY: clean-golangci-lint
clean-golangci-lint:
@(rm -rf bin/golangci-lint* ; echo "Golangci lint cleanup done" )

.PHONY: clean-licensei
clean-licensei:
@(rm -rf bin/licensei* ; echo "Licensei cleanup done" )

.PHONY: clean-go
clean-go:
@(rm -rf bin ; echo "GO executables cleanup done" )
@(rm -rf bin/vmclarity* ; echo "GO executables cleanup done" )

.PHONY: clean
clean: clean-ui clean-go ## Clean all build artifacts
clean: clean-ui clean-golangci-lint clean-licensei clean-go ## Clean all build artifacts

$(BIN_DIR):
@mkdir -p $(BIN_DIR)
Expand Down

0 comments on commit 67e29a0

Please sign in to comment.