Makefile: don't print all objects removed by the clean target
This commit is contained in:
parent
ab2e577c66
commit
fbf97b2326
4
Makefile
4
Makefile
|
@ -312,9 +312,13 @@ uninstall:
|
||||||
rm -rf $(DESTDIR)$(ASSETS_DIR)
|
rm -rf $(DESTDIR)$(ASSETS_DIR)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
ifneq ($(V),1)
|
||||||
|
@echo RM
|
||||||
|
else
|
||||||
rm -rf $(OBJDIR_BASE)
|
rm -rf $(OBJDIR_BASE)
|
||||||
rm -f $(TARGET)
|
rm -f $(TARGET)
|
||||||
rm -f *.d
|
rm -f *.d
|
||||||
|
endif
|
||||||
|
|
||||||
.PHONY: all install uninstall clean
|
.PHONY: all install uninstall clean
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue