summaryrefslogtreecommitdiff
path: root/NxWidgets
diff options
context:
space:
mode:
Diffstat (limited to 'NxWidgets')
-rw-r--r--NxWidgets/ChangeLog.txt2
-rw-r--r--NxWidgets/libnxwidgets/Makefile8
-rw-r--r--NxWidgets/nxwm/Makefile8
3 files changed, 18 insertions, 0 deletions
diff --git a/NxWidgets/ChangeLog.txt b/NxWidgets/ChangeLog.txt
index e0a4c9b2e..840c0640b 100644
--- a/NxWidgets/ChangeLog.txt
+++ b/NxWidgets/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/NxWidgets/libnxwidgets/Makefile b/NxWidgets/libnxwidgets/Makefile
index 2520e419d..0afb55e69 100644
--- a/NxWidgets/libnxwidgets/Makefile
+++ b/NxWidgets/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/NxWidgets/nxwm/Makefile b/NxWidgets/nxwm/Makefile
index e50863494..6b60327af 100644
--- a/NxWidgets/nxwm/Makefile
+++ b/NxWidgets/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