Skip to content

Commit e08ecd6

Browse files
committed
Makefile.webos: don't print all objects removed by the clean target in silent mode
1 parent 192ca41 commit e08ecd6

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Makefile.webos

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,12 +235,16 @@ $(OBJDIR)/%.o: %.S $(HEADERS)
235235
$(Q)$(CC) $(CFLAGS) $(ASFLAGS) $(DEFINES) -c -o $@ $<
236236

237237
clean:
238+
ifneq ($(V),1)
239+
@echo RM
240+
else
238241
rm -rf $(OBJDIR_BASE)
239242
rm -f $(TARGET)
240243
rm -f *.d
241244
rm -rf SDL
242245
rm -rf webos/*.ipk
243246
rm -rf webos/dist
247+
endif
244248

245249
sdl2: $(TARGET)
246250
ifeq ($(ADD_SDL2_LIB), 1)

0 commit comments

Comments
 (0)