From 09d0af1ea62e7127806293ab6ea85fe722d1eadd Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Sun, 2 Mar 2025 22:02:02 +0000 Subject: [PATCH] refactor(userspace/libs): rename libdemo to libexample Signed-off-by: EnderIce2 --- Fennix Userspace.code-workspace | 4 ++-- Userspace/libs/Makefile | 4 ++-- Userspace/libs/{libdemo => libexample}/Makefile | 0 Userspace/libs/{libdemo/demo.c => libexample/example.c} | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename Userspace/libs/{libdemo => libexample}/Makefile (100%) rename Userspace/libs/{libdemo/demo.c => libexample/example.c} (100%) diff --git a/Fennix Userspace.code-workspace b/Fennix Userspace.code-workspace index b02f2863..509c0edc 100644 --- a/Fennix Userspace.code-workspace +++ b/Fennix Userspace.code-workspace @@ -13,12 +13,12 @@ "C_Cpp.autoAddFileAssociations": false, "conventionalCommits.scopes": [ "userspace/libc", - "userspace/libs/libdemo", "vscode", "userspace/apps/sys/init", "userspace/apps/test/utest", "userspace/libs/libm", - "devcontainer" + "devcontainer", + "userspace/libs" ] } } diff --git a/Userspace/libs/Makefile b/Userspace/libs/Makefile index 6be6c47a..ec6ff919 100644 --- a/Userspace/libs/Makefile +++ b/Userspace/libs/Makefile @@ -2,9 +2,9 @@ build: cp -a $(CURDIR)/include/. $(WORKSPACE_DIR)/out/include make -C libgcc build make -C libm build - make -C libdemo build + make -C libexample build clean: make -C libgcc clean make -C libm clean - make -C libdemo clean + make -C libexample clean diff --git a/Userspace/libs/libdemo/Makefile b/Userspace/libs/libexample/Makefile similarity index 100% rename from Userspace/libs/libdemo/Makefile rename to Userspace/libs/libexample/Makefile diff --git a/Userspace/libs/libdemo/demo.c b/Userspace/libs/libexample/example.c similarity index 100% rename from Userspace/libs/libdemo/demo.c rename to Userspace/libs/libexample/example.c