userspace: Implement basename utility

This commit is contained in:
2024-12-05 08:30:06 +02:00
parent ccb603d77f
commit 097ab82529
3 changed files with 39 additions and 0 deletions

View File

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