Fixes for clean compilation of NxWidgets/NxWM with Kconfig and changes to build system; Fixes to Shenzhou NxWM configuration for clean build

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5193 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2012-09-26 14:36:28 +00:00
parent e13dbaa53f
commit 5354e2d637
3 changed files with 18 additions and 0 deletions

View File

@ -166,3 +166,5 @@
* Kconfig: Added a mconfig configuration file. Eventually, NxWidgets
needs to get hooked into the NuttX mconf configuration. Still not
exactly sure how to do that.
* libnxwidgets/Makefile and NxWidgets/nxwm/Makefile: Need updates
for consistency with recent changes to NuttX build system (>= 6.22)

View File

@ -36,6 +36,14 @@
-include $(TOPDIR)/.config
-include $(TOPDIR)/Make.defs
# Control build verbosity
ifeq ($(V),1)
export Q :=
else
export Q := @
endif
NXWIDGETDIR := ${shell pwd | sed -e 's/ /\\ /g'}
ASRCS =

View File

@ -36,6 +36,14 @@
-include $(TOPDIR)/.config
-include $(TOPDIR)/Make.defs
# Control build verbosity
ifeq ($(V),1)
export Q :=
else
export Q := @
endif
NXWMDIR := ${shell pwd | sed -e 's/ /\\ /g'}
NXWIDGETDIR := $(NXWMDIR)/../libnxwidgets