mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
apps/ make-related fixes. Now builds kernel mode file system
This commit is contained in:
parent
1c279a2c0b
commit
b9a650ae8c
4 changed files with 49 additions and 34 deletions
|
|
@ -33,8 +33,8 @@
|
|||
#
|
||||
############################################################################
|
||||
|
||||
include ${TOPDIR}/.config
|
||||
include ${TOPDIR}/build/Make.defs
|
||||
include $(TOPDIR)/.config
|
||||
include $(TOPDIR)/build/Make.defs
|
||||
|
||||
# Control build verbosity
|
||||
#
|
||||
|
|
@ -183,10 +183,10 @@ AFLAGS = $(CFLAGS) -D__ASSEMBLY__
|
|||
|
||||
ifeq ($(WINTOOL),y)
|
||||
# Windows-native toolchains
|
||||
LDLIBPATH = -L "${shell cygpath -w ${APPDIR}}" -L "${shell cygpath -w $(TOPDIR)$(DELIM)libs}"
|
||||
LDLIBPATH = -L "${shell cygpath -w $(APPDIR)}" -L "${shell cygpath -w $(TOPDIR)$(DELIM)libs}"
|
||||
else
|
||||
# Linux/Cygwin-native toolchain
|
||||
LDLIBPATH = -L ${APPDIR} -L $(TOPDIR)$(DELIM)libs
|
||||
LDLIBPATH = -L $(APPDIR) -L $(TOPDIR)$(DELIM)libs
|
||||
endif
|
||||
|
||||
LDLIBS = -lnuttx
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue