Makefile: don't print all objects removed by the clean target

This commit is contained in:
pstef 2025-04-11 14:59:04 +00:00
parent ab2e577c66
commit fbf97b2326
1 changed files with 4 additions and 0 deletions

View File

@ -312,9 +312,13 @@ uninstall:
rm -rf $(DESTDIR)$(ASSETS_DIR)
clean:
ifneq ($(V),1)
@echo RM
else
rm -rf $(OBJDIR_BASE)
rm -f $(TARGET)
rm -f *.d
endif
.PHONY: all install uninstall clean