Skip to content

Commit 3085936

Browse files
committed
Makefile.wii: don't print all objects removed by the clean target in silent mode
1 parent 25a1f1b commit 3085936

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Makefile.wii

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,10 +299,14 @@ $(APP_BOOTER_DIR)/app_booter.bin:
299299
$(MAKE) -C $(APP_BOOTER_DIR)
300300

301301
clean:
302+
ifneq ($(V),1)
303+
@echo RM
304+
else
302305
rm -f $(EXT_TARGET)
303306
rm -f $(EXT_INTER_TARGET)
304307
rm -f $(OBJ)
305308
$(MAKE) -C $(APP_BOOTER_DIR) clean
309+
endif
306310

307311
.PHONY: clean
308312

0 commit comments

Comments
 (0)