zephyr/lib/libc/minimal/Makefile
Juan Manuel Cruz de1cec29d6 Kbuild: Build minimal libc as a static library.
This commit changes the way libc is built.
Instead of building a hierarchy of objects linked into the
microkernel, libc minimal is built as a static library and
linked against the microkernel binary.
The location of the libc is configurable with the variable
KLIBC_DIR. This gives the flexibility to build against a
different libc other than minimal.

Change-Id: I9c0b6a684a9f3b407861aa387727c45eceb269c4
Signed-off-by: Juan Manuel Cruz <juan.m.cruz.alcaraz@linux.intel.com>
2016-02-05 20:14:08 -05:00

6 lines
167 B
Makefile

lib-y := source/stdout/fprintf.o
lib-y += source/stdout/prf.o
lib-y += source/stdout/sprintf.o
lib-y += source/stdout/stdout_console.o
lib-y += source/string/string.o