diff options
| author | 2026-03-16 12:14:47 +0100 | |
|---|---|---|
| committer | 2026-03-16 12:14:47 +0100 | |
| commit | 5e6f97a1cadb1a1f8a1ed7cb4bd44bd1c79c150a (patch) | |
| tree | 04f61bf933b139352d2769552c474909e5b4c594 /Makefile | |
| parent | 10eedb2f980a3272e9a08aff09f9cd2118b31fdb (diff) | |
Makefile: add clean-tool
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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)" |