2023-07-19 16:35:00 +00:00
|
|
|
# SIMPLEFB
|
2022-06-14 14:14:56 +00:00
|
|
|
lib-$(CONFIG_SIMPLE_FB) += simplefb/simplefb.o
|
2023-07-19 16:35:00 +00:00
|
|
|
|
|
|
|
# DEBUG
|
2022-06-14 16:51:51 +00:00
|
|
|
lib-y += debug/debug.o
|
2023-07-19 16:35:00 +00:00
|
|
|
|
2024-08-06 10:25:07 +00:00
|
|
|
# Neatlibc (excluding signal and syscalls)
|
2023-07-19 16:35:00 +00:00
|
|
|
ifeq ($(ARCH), arm)
|
2024-08-06 10:25:07 +00:00
|
|
|
lib-y += neatlibcarm/arm/bits.o \
|
|
|
|
neatlibcarm/arm/lmem.o \
|
|
|
|
neatlibcarm/arm/string.o
|
2023-07-19 16:35:00 +00:00
|
|
|
else
|
2024-08-06 10:25:07 +00:00
|
|
|
lib-y += neatlibcaarch64/$(ARCH)/bits.o \
|
|
|
|
neatlibcaarch64/$(ARCH)/lmem.o \
|
|
|
|
neatlibcaarch64/$(ARCH)/string.o
|
2023-07-19 16:35:00 +00:00
|
|
|
endif
|
2024-08-06 10:25:07 +00:00
|
|
|
|
|
|
|
lib-y += neatlibc/ctype.o \
|
|
|
|
neatlibc/strftime.o \
|
|
|
|
neatlibc/mkstemp.o \
|
|
|
|
neatlibc/regex.o \
|
|
|
|
neatlibc/rand.o \
|
|
|
|
neatlibc/stdarg.o \
|
|
|
|
neatlibc/memtst.o \
|
|
|
|
neatlibc/dirent.o \
|
|
|
|
neatlibc/localtime.o \
|
|
|
|
neatlibc/malloc.o \
|
|
|
|
neatlibc/termios.o \
|
|
|
|
neatlibc/atoi.o \
|
|
|
|
neatlibc/errno.o \
|
|
|
|
neatlibc/stdio.o \
|
|
|
|
neatlibc/stdlib.o \
|
|
|
|
neatlibc/qsort.o \
|
|
|
|
neatlibc/stringc.o \
|
|
|
|
neatlibc/isatty.o \
|
|
|
|
neatlibc/scanf.o \
|
|
|
|
neatlibc/string.o
|