From fc00c656c96528112d05cf0edf8631bd5eaea446 Mon Sep 17 00:00:00 2001 From: Kacper Date: Sun, 7 Dec 2025 20:10:31 +0100 Subject: Add build system scaffolding and libc headers --- lib/libc/Kbuild | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 lib/libc/Kbuild (limited to 'lib/libc/Kbuild') diff --git a/lib/libc/Kbuild b/lib/libc/Kbuild new file mode 100644 index 00000000..dc0538a6 --- /dev/null +++ b/lib/libc/Kbuild @@ -0,0 +1,44 @@ +lib-y := libc.a + +cflags-y += -I $(src)/include + +obj-y += arch/ +obj-y += arpa/ +obj-y += assert/ +obj-y += ctype/ +obj-y += devctl/ +obj-y += dirent/ +obj-y += endian/ +obj-y += errno/ +obj-y += fcntl/ +obj-y += grp/ +obj-y += inttypes/ +obj-y += libgen/ +obj-y += mman/ +obj-y += monetary/ +obj-y += msg/ +obj-y += poll/ +obj-y += pwd/ +obj-y += select/ +obj-y += sem/ +obj-y += setjmp/ +obj-y += signal/ +obj-y += socket/ +obj-y += stat/ +obj-y += statvfs/ +obj-y += stdio/ +obj-y += stdlib/ +obj-y += string/ +obj-y += strings/ +obj-y += sys/ +obj-y += syslog/ +obj-y += termios/ +obj-y += thread/ +obj-y += time/ +obj-y += times/ +obj-y += uio/ +obj-y += unistd/ +obj-y += utsname/ +obj-y += wait/ +obj-y += wchar/ +obj-y += wctype/ -- cgit v1.2.3