zephyr/kernel/Makefile
Luiz Augusto von Dentz a7ddb87501 kernel: Add k_queue API
This unifies k_fifo and k_lifo APIs thus making it more flexible regarding
where the data elements are inserted.

Change-Id: Icd6e2f62fc8b374c8273bb763409e9e22c40f9f8
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
2017-02-27 21:20:50 +00:00

44 lines
723 B
Makefile

ccflags-y += -I$(srctree)/kernel/include
asflags-y := ${ccflags-y}
obj-y =
obj-y += $(strip \
version.o \
)
lib-y =
lib-y += $(strip \
sys_clock.o \
thread.o \
init.o \
sem.o \
device.o \
thread_abort.o \
idle.o \
sched.o \
mutex.o \
queue.o \
lifo.o \
fifo.o \
stack.o \
mem_slab.o \
mem_pool.o \
msg_q.o \
mailbox.o \
mem_pool.o \
alert.o \
pipes.o \
legacy_offload.o \
errno.o \
work_q.o \
system_work_q.o \
)
lib-$(CONFIG_INT_LATENCY_BENCHMARK) += int_latency_bench.o
lib-$(CONFIG_STACK_CANARIES) += compiler_stack_protect.o
lib-$(CONFIG_SYS_CLOCK_EXISTS) += timer.o
lib-$(CONFIG_LEGACY_KERNEL) += legacy_timer.o
lib-$(CONFIG_ATOMIC_OPERATIONS_C) += atomic_c.o
lib-$(CONFIG_POLL) += poll.o