From 5e6f97a1cadb1a1f8a1ed7cb4bd44bd1c79c150a Mon Sep 17 00:00:00 2001 From: lemon Date: Mon, 16 Mar 2026 12:14:47 +0100 Subject: Makefile: add clean-tool --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c377d62..4030ab1 100644 --- a/Makefile +++ b/Makefile @@ -49,10 +49,13 @@ $(BUILDDIR)/%.o: %.c hostconfig.h $(CC) $(CFLAGS) -c -o $@ $< clean: - $(RM) -r -- $(BUILDDIR)/ test/build/ $(OUT) *.o a.out tool/depgen + $(RM) -r -- $(BUILDDIR)/ test/build/ $(OUT) *.o a.out + +clean-tool: + $(RM) -r tool/depgen clean-config: clean - $(RM) -r config.mk hostconfig.h + $(RM) -r config.mk hostconfig.h tool/depgen install: all @mkdir -p "$(DESTDIR)$(BINDIR)" -- cgit v1.2.3