summaryrefslogtreecommitdiffstats
path: root/nuttx/configs/stm3220g-eval/src/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-04-07 22:32:35 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-04-07 22:32:35 +0000
commitfbf1b0065abe6e969133cbd9ff0d0973246b0a2a (patch)
treea89d116e448e00f782ae1d9fdd3742f7264e728c /nuttx/configs/stm3220g-eval/src/Makefile
parent235ee57f110d131decc1a051c13885c61b0e8a20 (diff)
Updates the STM3220G-EVAL configurations
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4572 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/configs/stm3220g-eval/src/Makefile')
-rw-r--r--nuttx/configs/stm3220g-eval/src/Makefile18
1 files changed, 17 insertions, 1 deletions
diff --git a/nuttx/configs/stm3220g-eval/src/Makefile b/nuttx/configs/stm3220g-eval/src/Makefile
index 3cc2040636..b79189cb1b 100644
--- a/nuttx/configs/stm3220g-eval/src/Makefile
+++ b/nuttx/configs/stm3220g-eval/src/Makefile
@@ -1,7 +1,7 @@
############################################################################
# configs/stm3220g-eval/src/Makefile
#
-# Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
+# Copyright (C) 2012 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -42,6 +42,10 @@ AOBJS = $(ASRCS:.S=$(OBJEXT))
CSRCS = up_boot.c up_spi.c
+ifeq ($(CONFIG_HAVE_CXX),y)
+CSRCS += up_cxxinitialize.c
+endif
+
ifeq ($(CONFIG_ARCH_LEDS),y)
CSRCS += up_autoleds.c
else
@@ -52,6 +56,14 @@ ifeq ($(CONFIG_ARCH_BUTTONS),y)
CSRCS += up_buttons.c
endif
+ifeq ($(CONFIG_USBDEV),y)
+CSRCS += up_usbdev.c
+endif
+
+ifeq ($(CONFIG_STM32_FSMC),y)
+CSRCS += up_extmem.c up_selectsram.c up_deselectsram.c
+endif
+
ifeq ($(CONFIG_ADC),y)
CSRCS += up_adc.c
endif
@@ -68,6 +80,10 @@ ifeq ($(CONFIG_NSH_ARCHINIT),y)
CSRCS += up_nsh.c
endif
+ifeq ($(CONFIG_ARCH_FPU),y)
+CSRCS += up_ostest.c
+endif
+
COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS)