Add infrastructure support having multiple instances of a driver configured into the system each with its own compile time configuration information. Change-Id: I1e447af18311139b43f74fe0439483ccd132b63f Signed-off-by: Dirk Brandewie <dirk.j.brandewie@intel.com>
17 lines
542 B
Makefile
17 lines
542 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_timer.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_PERFORMANCE_METRICS) += nanometrics.o
|
|
obj-$(CONFIG_ADVANCED_POWER_MANAGEMENT) += idle.o
|
|
obj-$(CONFIG_NANOKERNEL) += nano_sys_clock.o
|