summaryrefslogtreecommitdiff
path: root/nuttx/sched/Makefile
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-08 12:44:44 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-08 12:44:44 -0600
commit6b08270554c627bd8034cfd772e4e40cde579648 (patch)
tree16a8c9e6e460805e817c3e304063b25b9b2f9bf8 /nuttx/sched/Makefile
parentb61c7bebffa7dc52d2edb128086bbbca2d978c48 (diff)
downloadnuttx-6b08270554c627bd8034cfd772e4e40cde579648.tar.gz
nuttx-6b08270554c627bd8034cfd772e4e40cde579648.tar.bz2
nuttx-6b08270554c627bd8034cfd772e4e40cde579648.zip
Move signal-related files from sched/ to sched/signal
Diffstat (limited to 'nuttx/sched/Makefile')
-rw-r--r--nuttx/sched/Makefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile
index cfaf96f16..3030f3ab5 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -183,20 +183,17 @@ endif
IRQ_SRCS = irq_initialize.c irq_attach.c irq_dispatch.c irq_unexpectedisr.c
+include signal/Make.defs
include mqueue/Make.defs
CSRCS = $(MISC_SRCS) $(TSK_SRCS) $(GRP_SRCS) $(SCHED_SRCS) $(WDOG_SRCS)
CSRCS += $(TIME_SRCS) $(SEM_SRCS) $(TIMER_SRCS) $(PGFILL_SRCS)
-CSRCS += $(IRQ_SRCS) $(CLOCK_SRCS) $(MQUEUE_SRCS)
+CSRCS += $(IRQ_SRCS) $(CLOCK_SRCS) $(MQUEUE_SRCS) $(SIGNAL_SRCS)
ifneq ($(CONFIG_DISABLE_PTHREAD),y)
CSRCS += $(PTHREAD_SRCS)
endif
-ifneq ($(CONFIG_DISABLE_SIGNALS),y)
-CSRCS += $(SIGNAL_SRCS)
-endif
-
ifneq ($(CONFIG_DISABLE_ENVIRON),y)
CSRCS += $(ENV_SRCS)
endif