summaryrefslogtreecommitdiff
path: root/lib/libc/Kbuild
diff options
context:
space:
mode:
authorKacper <kacper@mail.openlinux.dev>2025-12-07 20:10:31 +0100
committerKacper <kacper@mail.openlinux.dev>2025-12-07 20:10:31 +0100
commitfc00c656c96528112d05cf0edf8631bd5eaea446 (patch)
treea6e0e6c588191a8bd1c64afc3b7a258e3e66c236 /lib/libc/Kbuild
Add build system scaffolding and libc headers
Diffstat (limited to 'lib/libc/Kbuild')
-rw-r--r--lib/libc/Kbuild44
1 files changed, 44 insertions, 0 deletions
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/