Skip to content

Commit 25a1f1b

Browse files
committed
Makefile.webos: print variables once in silent mode
1 parent e08ecd6 commit 25a1f1b

1 file changed

Lines changed: 23 additions & 1 deletion

File tree

Makefile.webos

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,29 @@ define APPINFO
204204
endef
205205
export APPINFO
206206

207-
all: $(TARGET) ipk
207+
all: info $(TARGET) ipk
208+
209+
define INFO
210+
ASFLAGS: $(ASFLAGS)
211+
CC: $(CC)
212+
CFLAGS: $(CFLAGS)
213+
CPPFLAGS: $(CPPFLAGS)
214+
CXX: $(CXX)
215+
CXXFLAGS: $(CXXFLAGS)
216+
DEFINES: $(DEFINES)
217+
LDFLAGS: $(LDFLAGS)
218+
LIBRARY_DIRS: $(LIBRARY_DIRS)
219+
LIBS: $(LIBS)
220+
LINK: $(LINK)
221+
OBJCFLAGS: $(OBJCFLAGS)
222+
RARCH_OBJ: $(RARCH_OBJ)
223+
endef
224+
export INFO
225+
226+
info:
227+
ifneq ($(V),1)
228+
@echo "$$INFO"
229+
endif
208230

209231
-include $(RARCH_OBJ:.o=.d)
210232

0 commit comments

Comments
 (0)