summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm3240g-eval/src/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-02 23:14:54 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-02 23:14:54 +0000
commit16166e4a5ea25f9c01784a11162de92156b5b872 (patch)
tree5db2d7fe63865f55a665a3ac3a86ed6d4468c6a0 /nuttx/configs/stm3240g-eval/src/Makefile
parent48fd86b3cbce7ecde8f571148444d8953dcc68da (diff)
downloadpx4-nuttx-16166e4a5ea25f9c01784a11162de92156b5b872.tar.gz
px4-nuttx-16166e4a5ea25f9c01784a11162de92156b5b872.tar.bz2
px4-nuttx-16166e4a5ea25f9c01784a11162de92156b5b872.zip
Add stm3240g-eval nsh2 configuration: SDIO and no UART
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4363 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/stm3240g-eval/src/Makefile')
-rw-r--r--nuttx/configs/stm3240g-eval/src/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/nuttx/configs/stm3240g-eval/src/Makefile b/nuttx/configs/stm3240g-eval/src/Makefile
index 8ddca49e1..cddc791c5 100644
--- a/nuttx/configs/stm3240g-eval/src/Makefile
+++ b/nuttx/configs/stm3240g-eval/src/Makefile
@@ -1,7 +1,7 @@
############################################################################
# configs/stm3240g-eval/src/Makefile
#
-# Copyright (C) 2011 Gregory Nutt. All rights reserved.
+# Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -64,6 +64,10 @@ ifeq ($(CONFIG_CAN),y)
CSRCS += up_can.c
endif
+ifeq ($(CONFIG_NSH_ARCHINIT),y)
+CSRCS += up_nsh.c
+endif
+
COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS)