userspace: Implement ln utility

This commit is contained in:
2024-12-05 08:14:45 +02:00
parent 1903079f96
commit 56cc5da9fb
3 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
set(SOURCES
main.cpp
)
add_executable(ln ${SOURCES})
banan_link_library(ln libc)
install(TARGETS ln OPTIONAL)