From a70b7580eb7648e6012adc90a3f367c30dc79b98 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 6 Sep 2014 12:28:30 -0600 Subject: apps/ make-related fixes. Now builds kernel mode file system --- apps/import/Make.defs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'apps/import') diff --git a/apps/import/Make.defs b/apps/import/Make.defs index 3506d6ea6..6817e63dd 100644 --- a/apps/import/Make.defs +++ b/apps/import/Make.defs @@ -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 -- cgit v1.2.3