From f48a9c4c07344bb8dbe907b0d181cac66cd7db11 Mon Sep 17 00:00:00 2001 From: mappu Date: Tue, 15 Apr 2025 20:51:21 +1200 Subject: [PATCH] Makefile: add clean-cache helper function --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 28864a78..b28558ad 100644 --- a/Makefile +++ b/Makefile @@ -27,6 +27,10 @@ clean: $(DOCKER) image rm -f miqt/genbindings:latest rm -f $(BUILDSTAMPS) +.PHONY: clean-cache +clean-cache: + rm -f cmd/genbindings/cachedir/*.json + .PHONY: genbindings genbindings: $(BUILDSTAMPS) $(DOCKEREXEC) 'cd cmd/genbindings && go build && ./genbindings'