aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2026-03-16 12:14:47 +0100
committerlemon <lsof@mailbox.org>2026-03-16 12:14:47 +0100
commit5e6f97a1cadb1a1f8a1ed7cb4bd44bd1c79c150a (patch)
tree04f61bf933b139352d2769552c474909e5b4c594 /Makefile
parent10eedb2f980a3272e9a08aff09f9cd2118b31fdb (diff)
Makefile: add clean-tool
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files 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)"