aboutsummaryrefslogtreecommitdiff
path: root/apps/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-04 15:07:06 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-04 15:07:06 +0000
commitb0eb4f3ccee248a2f70fab8ab1972ad4907a9e22 (patch)
treeaa15bc2af17fcfac1187c1870a8650f2148ba170 /apps/Makefile
parente6656c077c35341384d5474f0d7b65067b7997ec (diff)
downloadpx4-firmware-b0eb4f3ccee248a2f70fab8ab1972ad4907a9e22.tar.gz
px4-firmware-b0eb4f3ccee248a2f70fab8ab1972ad4907a9e22.tar.bz2
px4-firmware-b0eb4f3ccee248a2f70fab8ab1972ad4907a9e22.zip
Change order of includes in apps/Makefile; add clock frequencies to shenzhou, fire, and olimex-stm32 board.h files
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5210 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/Makefile')
-rw-r--r--apps/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/Makefile b/apps/Makefile
index d2b0ecdab..e407e2de8 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -46,7 +46,7 @@ APPDIR = ${shell pwd}
# appears in this directory as .config)
# SUBDIRS is the list of all directories containing Makefiles. It is used
# only for cleaning. namedapp must always be the first in the list. This
-# list can be extended by the .config file as well
+# list can be extended by the .config file as well.
CONFIGURED_APPS =
SUBDIRS = examples graphics interpreters modbus namedapp nshlib netutils system
@@ -70,11 +70,13 @@ SUBDIRS = examples graphics interpreters modbus namedapp nshlib netutils system
ifeq ($(CONFIG_NUTTX_NEWCONFIG),y)
+# namedapp/Make.defs must be included first
+
+include namedapp/Make.defs
include examples/Make.defs
include graphics/Make.defs
include interpreters/Make.defs
include modbus/Make.defs
-include namedapp/Make.defs
include netutils/Make.defs
include nshlib/Make.defs
include system/Make.defs