refactor(userspace/libs): rename libdemo to libexample

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
EnderIce2 2025-03-02 22:02:02 +00:00
parent 7b85636f8f
commit 09d0af1ea6
No known key found for this signature in database
GPG Key ID: 2EE20AF089811A5A
4 changed files with 4 additions and 4 deletions

View File

@ -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"
]
}
}

View File

@ -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