summaryrefslogtreecommitdiff
path: root/nuttx/arch/sh/src/sh1/Make.defs
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-02-12 00:30:04 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-02-12 00:30:04 +0000
commit43f555224a7226972b1f2cbfb4dbf3b5198ad527 (patch)
treefc55d08d6dfa60137d735093ccbf656042249962 /nuttx/arch/sh/src/sh1/Make.defs
parent10c4657704464e36e966873ba091c47ba7ae6db2 (diff)
downloadpx4-nuttx-43f555224a7226972b1f2cbfb4dbf3b5198ad527.tar.gz
px4-nuttx-43f555224a7226972b1f2cbfb4dbf3b5198ad527.tar.bz2
px4-nuttx-43f555224a7226972b1f2cbfb4dbf3b5198ad527.zip
signal deliver is specific to SoC
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1487 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/sh/src/sh1/Make.defs')
-rw-r--r--nuttx/arch/sh/src/sh1/Make.defs10
1 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/arch/sh/src/sh1/Make.defs b/nuttx/arch/sh/src/sh1/Make.defs
index 184ab1428..591614cbf 100644
--- a/nuttx/arch/sh/src/sh1/Make.defs
+++ b/nuttx/arch/sh/src/sh1/Make.defs
@@ -1,7 +1,7 @@
##############################################################################
# arch/sh/src/sh1/Make.defs
#
-# Copyright (C) 2008 Gregory Nutt. All rights reserved.
+# Copyright (C) 2008, 2009 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
#
# Redistribution and use in source and binary forms, with or without
@@ -42,14 +42,14 @@ CMN_CSRCS = up_allocateheap.c up_assert.c up_blocktask.c up_copystate.c \
up_mdelay.c up_puts.c up_releasepending.c up_releasestack.c \
up_reprioritizertr.c up_udelay.c up_unblocktask.c up_usestack.c
-ifneq ($(CONFIG_DISABLE_SIGNALS),y)
-CMN_CSRCS += up_schedulesigaction.c up_sigdeliver.c
-endif
-
CHIP_ASRCS = sh1_vector.S sh1_saveusercontext.S
CHIP_CSRCS = sh1_lowputc.c sh1_irq.c sh1_timerisr.c sh1_serial.c \
sh1_initialstate.c sh1_dumpstate.c
+ifneq ($(CONFIG_DISABLE_SIGNALS),y)
+CMN_CSRCS += sh1_schedulesigaction.c sh1_sigdeliver.c
+endif
+
ifeq ($(CONFIG_USBDEV),y)
CHIP_CSRCS +=
endif