summaryrefslogtreecommitdiff
path: root/nuttx/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-13 14:27:44 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-13 14:27:44 +0000
commit39d5b50acfe2e80d151169bf39defd8836352fbc (patch)
tree7ce0182627d159e85327377b15872ee5947ab487 /nuttx/Makefile
parent9f46571a0abc4f66c5a26859ed93b885587c8c6b (diff)
downloadpx4-nuttx-39d5b50acfe2e80d151169bf39defd8836352fbc.tar.gz
px4-nuttx-39d5b50acfe2e80d151169bf39defd8836352fbc.tar.bz2
px4-nuttx-39d5b50acfe2e80d151169bf39defd8836352fbc.zip
Kconfig update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4599 42af7a65-404d-4744-a932-0658087f49c3
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
-