From 5354e2d6379c84a6d57fcb9d50e177145d7068d4 Mon Sep 17 00:00:00 2001 From: patacongo Date: Wed, 26 Sep 2012 14:36:28 +0000 Subject: [PATCH] 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 --- ChangeLog.txt | 2 ++ libnxwidgets/Makefile | 8 ++++++++ nxwm/Makefile | 8 ++++++++ 3 files changed, 18 insertions(+) diff --git a/ChangeLog.txt b/ChangeLog.txt index e0a4c9b2e..840c0640b 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -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) diff --git a/libnxwidgets/Makefile b/libnxwidgets/Makefile index 2520e419d..0afb55e69 100644 --- a/libnxwidgets/Makefile +++ b/libnxwidgets/Makefile @@ -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 = diff --git a/nxwm/Makefile b/nxwm/Makefile index e50863494..6b60327af 100644 --- a/nxwm/Makefile +++ b/nxwm/Makefile @@ -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