xiaoxiang781216 commented on code in PR #1407: URL: https://github.com/apache/nuttx-apps/pull/1407#discussion_r1037924651
########## Makefile: ########## @@ -83,11 +93,15 @@ else # symbol table is required. ifeq ($(CONFIG_BUILD_LOADABLE),) - +ifeq ($(CONFIG_WINDOWS_NATIVE),y) +$(BIN): $(foreach SDIR, $(CONFIGURED_APPS), $(SDIR)_all) + $(Q) for %%G in ($(CONFIGURED_APPS)) do ( $(MAKE) -C %%G archive ) +else $(BIN): $(foreach SDIR, $(CONFIGURED_APPS), $(SDIR)_all) $(Q) for app in ${CONFIGURED_APPS}; do \ Review Comment: what's problem is fixed by change app to %%G -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org