mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-01 08:05:59 +00:00
File contents moved to the nanokernel initialization file, since they don't warrant their own distinct source file. Change-Id: I61329067a077c421e2889c745ea44eef78ce37cb Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
16 lines
492 B
Makefile
16 lines
492 B
Makefile
ccflags-y +=-I$(srctree)/kernel/nanokernel/include
|
|
ccflags-y +=-I$(srctree)/kernel/microkernel/include
|
|
|
|
|
|
asflags-y := ${ccflags-y}
|
|
|
|
obj-y = nano_fiber.o nano_lifo.o \
|
|
nano_fifo.o nano_stack.o nano_sys_clock.o \
|
|
nano_context.o nano_init.o nano_sema.o \
|
|
version.o ctors.o device.o
|
|
|
|
obj-$(CONFIG_STACK_CANARIES) += compiler_stack_protect.o
|
|
obj-$(CONFIG_INT_LATENCY_BENCHMARK) += int_latency_bench.o
|
|
obj-$(CONFIG_ADVANCED_POWER_MANAGEMENT) += idle.o
|
|
obj-$(CONFIG_NANO_TIMERS) += nano_timer.o
|