summaryrefslogtreecommitdiff
path: root/nuttx/sched/Makefile
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-08 15:30:59 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-08 15:30:59 -0600
commitb415d5f6e7f3bb0e4eca3c51d8a121a9ce4adcfc (patch)
treefb1eb4603a497ffcad2e2eae6e802363f5faca91 /nuttx/sched/Makefile
parent0dc82c9ce3122c309e91981ed62a4d2a08744b86 (diff)
downloadnuttx-b415d5f6e7f3bb0e4eca3c51d8a121a9ce4adcfc.tar.gz
nuttx-b415d5f6e7f3bb0e4eca3c51d8a121a9ce4adcfc.tar.bz2
nuttx-b415d5f6e7f3bb0e4eca3c51d8a121a9ce4adcfc.zip
Move initialization functions from sched/ to sched/init
Diffstat (limited to 'nuttx/sched/Makefile')
-rw-r--r--nuttx/sched/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile
index a14080eed..b7675f84a 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -41,8 +41,8 @@ DEPPATH = --dep-path .
ASRCS =
AOBJS = $(ASRCS:.S=$(OBJEXT))
-MISC_SRCS = os_start.c os_bringup.c errno_getptr.c sched_garbage.c
-MISC_SRCS += sched_getfiles.c sched_getsockets.c sched_getstreams.c
+MISC_SRCS = errno_getptr.c sched_garbage.c sched_getfiles.c
+MISC_SRCS += sched_getsockets.c sched_getstreams.c
ifeq ($(CONFIG_NUTTX_KERNEL),y)
MISC_SRCS += errno_get.c errno_set.c
@@ -110,6 +110,7 @@ ifneq ($(CONFIG_DISABLE_SIGNALS),y)
TIME_SRCS += nanosleep.c
endif
+include init/Make.defs
include irq/Make.defs
include paging/Make.defs
include group/Make.defs
@@ -123,7 +124,7 @@ include timer/Make.defs
include environ/Make.defs
CSRCS = $(MISC_SRCS) $(TSK_SRCS) $(SCHED_SRCS) $(TIME_SRCS)
-CSRCS += $(IRQ_SRCS) $(PG_SRCS) $(GRP_SRCS) $(WDOG_SRCS) $(SEM_SRCS) $(SIGNAL_SRCS) $(PTHREAD_SRCS) $(MQUEUE_SRCS) $(CLOCK_SRCS) $(TIMER_SRCS) $(ENV_SRCS)
+CSRCS += $(INIT_SRCS) $(IRQ_SRCS) $(PG_SRCS) $(GRP_SRCS) $(WDOG_SRCS) $(SEM_SRCS) $(SIGNAL_SRCS) $(PTHREAD_SRCS) $(MQUEUE_SRCS) $(CLOCK_SRCS) $(TIMER_SRCS) $(ENV_SRCS)
COBJS = $(CSRCS:.c=$(OBJEXT))