mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
Fix various error in Windows native build
This commit is contained in:
parent
a8e6a07b0a
commit
776136a113
6 changed files with 55 additions and 27 deletions
12
Directory.mk
12
Directory.mk
|
|
@ -22,11 +22,15 @@ include $(APPDIR)/Make.defs
|
|||
|
||||
# Sub-directories that have been built or configured.
|
||||
|
||||
SUBDIRS := $(dir $(wildcard *$(DELIM)Makefile))
|
||||
CONFIGSUBDIRS := $(filter-out $(dir $(wildcard *$(DELIM)Kconfig)),$(SUBDIRS))
|
||||
CLEANSUBDIRS += $(dir $(wildcard *$(DELIM).depend))
|
||||
CLEANSUBDIRS += $(dir $(wildcard *$(DELIM).kconfig))
|
||||
SUBDIRS := $(dir $(wildcard */Makefile))
|
||||
CONFIGSUBDIRS := $(filter-out $(dir $(wildcard */Kconfig)),$(SUBDIRS))
|
||||
CLEANSUBDIRS += $(dir $(wildcard */.depend))
|
||||
CLEANSUBDIRS += $(dir $(wildcard */.kconfig))
|
||||
CLEANSUBDIRS := $(sort $(CLEANSUBDIRS))
|
||||
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
||||
CONFIGSUBDIRS := $(subst /,\,$(CONFIGSUBDIRS))
|
||||
CLEANSUBDIRS := $(subst /,\,$(CLEANSUBDIRS))
|
||||
endif
|
||||
|
||||
all: nothing
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue