diff --git a/programs/systemd/CMakeLists.txt b/programs/systemd/CMakeLists.txt new file mode 100644 index 0000000..0f91d10 --- /dev/null +++ b/programs/systemd/CMakeLists.txt @@ -0,0 +1,10 @@ +file(GLOB sources *.c) +add_executable(systemd ${sources}) +target_link_libraries(systemd libc libc-rt liblaunch libmango) + +sysroot_add_program( + NAME systemd + BIN_DIR /usr/bin) +bsp_add_program( + NAME systemd + BIN_DIR /usr/bin) diff --git a/programs/systemd/main.c b/programs/systemd/main.c new file mode 100644 index 0000000..31dbf45 --- /dev/null +++ b/programs/systemd/main.c @@ -0,0 +1,4 @@ +int main(void) +{ + return 0; +}