summaryrefslogtreecommitdiff
path: root/nuttx/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/Makefile')
-rw-r--r--nuttx/Makefile19
1 files changed, 16 insertions, 3 deletions
diff --git a/nuttx/Makefile b/nuttx/Makefile
index ab6886ae9..1d26ed580 100644
--- a/nuttx/Makefile
+++ b/nuttx/Makefile
@@ -523,6 +523,22 @@ pass2dep: context
$(MAKE) -C $$dir TOPDIR="$(TOPDIR)" EXTRADEFINES=$(KDEFINE) depend; \
done
+# Configuration targets
+#
+# These targets depend on the kconfig-frontends packages. To use these, you
+# must first download and install the kconfig-frontends package from this
+# location: http://ymorin.is-a-geek.org/projects/kconfig-frontends. See
+# misc/tools/README.txt for additional information.
+
+config:
+ @APPSDIR=${CONFIG_APPS_DIR} conf Kconfig
+
+oldconfig:
+ @APPSDIR=${CONFIG_APPS_DIR} conf --oldconfig Kconfig
+
+menuconfig:
+ @APPSDIR=${CONFIG_APPS_DIR} mconf Kconfig
+
# export
#
# The export target will package the NuttX libraries and header files into
@@ -604,6 +620,3 @@ ifneq ($(APPDIR),)
{ echo "Copy of _SAVED_APPS_config failed" ; exit 1 ; }
endif
-menuconfig:
- @APPSDIR=${CONFIG_APPS_DIR} mconf Kconfig
-