Makefile: add clean PHONY target

Signed-off-by: Shengqi Chen <harry-chen@outlook.com>
This commit is contained in:
Shengqi Chen 2025-01-11 15:15:42 +08:00
parent 6d50645ddb
commit 3562907af9
No known key found for this signature in database

View File

@ -22,4 +22,7 @@ test:
build-test-worker: build-test-worker:
go test -c -covermode=count ./worker go test -c -covermode=count ./worker
.PHONY: all test $(BUILDBIN) build-test-worker clean:
rm -rf build-$(ARCH)
.PHONY: all test $(BUILDBIN) build-test-worker clean