summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-04-05 13:26:25 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-04-05 13:26:25 -0600
commit55a5cab48f8c7694856296096ed2dec568e12ba7 (patch)
tree3b3802955d36f4d022f627eb0a92128ff52d344e
parentccb3dbd5c949c165913737f7ad5016803abb9fca (diff)
Calypso: SPI built only if CONFIG_SPI
-rw-r--r--nuttx/arch/arm/src/calypso/Make.defs10
1 files changed, 7 insertions, 3 deletions
diff --git a/nuttx/arch/arm/src/calypso/Make.defs b/nuttx/arch/arm/src/calypso/Make.defs
index 07145d0539..009100c43a 100644
--- a/nuttx/arch/arm/src/calypso/Make.defs
+++ b/nuttx/arch/arm/src/calypso/Make.defs
@@ -1,7 +1,7 @@
############################################################################
# calypso/Make.defs
#
-# Copyright (C) 2007, 2013-2014 Gregory Nutt. All rights reserved.
+# Copyright (C) 2007, 2013-2015 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Copyright (C) 2011 Stefan Richter. All rights reserved.
@@ -57,8 +57,12 @@ CMN_CSRCS += up_checkstack.c
endif
CHIP_ASRCS = calypso_lowputc.S
-CHIP_CSRCS = calypso_irq.c calypso_heap.c calypso_serial.c calypso_spi.c
-CHIP_CSRCS += clock.c calypso_uwire.c calypso_armio.c calypso_keypad.c
+CHIP_CSRCS = calypso_irq.c calypso_heap.c calypso_serial.c clock.c
+CHIP_CSRCS += calypso_uwire.c calypso_armio.c calypso_keypad.c
+
+ifeq ($(CONFIG_SPI),y)
+CHIP_CSRCS += calypso_spi.c
+endif
ifneq ($(CONFIG_SCHED_TICKLESS),y)
CHIP_CSRCS += calypso_timer.c