mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-27 07:35:22 +00:00
Make sure that kernel/unified, that is included in libs-y does not built recursively through building kernel/ directory. Make sure that any lib.a library is not included into libzephyr.a and thus object modules from those lib.a files are linked only if a function from that object module is referenced from the application. Jira: ZEP-1025 Change-Id: Id3a3e96ca0b8abc9aedde0ffb9baa0164e380464 Signed-off-by: Dmitriy Korovkin <dmitriy.korovkin@windriver.com>
5 lines
98 B
Makefile
5 lines
98 B
Makefile
ifneq ($(CONFIG_KERNEL_V2),y)
|
|
obj-y = nanokernel/
|
|
obj-$(CONFIG_MICROKERNEL) += microkernel/
|
|
endif
|