Changed names of Kconfig flags, variables, functions, files and return codes consistent with names used in the RFC. Updated relevant comments to match the changes. Origin: Original Change-Id: Ie7941032d7ad7af61fc02928f74538745e7966e8 Signed-off-by: Ramesh Thomas <ramesh.thomas@intel.com> Signed-off-by: Anas Nashif <anas.nashif@intel.com>
20 lines
676 B
Makefile
20 lines
676 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 device.o
|
|
|
|
obj-$(CONFIG_INT_LATENCY_BENCHMARK) += int_latency_bench.o
|
|
obj-$(CONFIG_NANO_TIMEOUTS) += nano_sleep.o
|
|
obj-$(CONFIG_STACK_CANARIES) += compiler_stack_protect.o
|
|
obj-$(CONFIG_SYS_POWER_MANAGEMENT) += idle.o
|
|
obj-$(CONFIG_NANO_TIMERS) += nano_timer.o
|
|
obj-$(CONFIG_KERNEL_EVENT_LOGGER) += event_logger.o
|
|
obj-$(CONFIG_KERNEL_EVENT_LOGGER) += kernel_event_logger.o
|
|
obj-$(CONFIG_RING_BUFFER) += ring_buffer.o
|