Update all files from luna/ paths to libluna/
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
apio 2023-03-11 10:38:34 +01:00
parent 28028d229f
commit 0c07e66c4f
Signed by: apio
GPG Key ID: B8A7D06E42258954
3 changed files with 7 additions and 7 deletions

View File

@ -11,7 +11,7 @@
"${default}",
"${workspaceFolder}/base/usr/include",
"${workspaceFolder}/libc/include",
"${workspaceFolder}/luna/include"
"${workspaceFolder}/libluna/include"
]
}
],

View File

@ -5,8 +5,8 @@ source $(dirname $0)/env.sh
cd $LUNA_ROOT
SOURCES=($(find kernel/src -type f | grep -v "\.asm"))
SOURCES+=($(find luna/src -type f))
SOURCES+=($(find luna/include/luna -type f))
SOURCES+=($(find libluna/src -type f))
SOURCES+=($(find libluna/include/luna -type f))
ALL_OK=1

View File

@ -6,8 +6,8 @@ source $(dirname $0)/env.sh
cd $LUNA_ROOT
SOURCES=($(find kernel/src -type f | grep -v "\.asm" | grep -v "bootboot.h"))
SOURCES+=($(find luna/src -type f))
SOURCES+=($(find luna/include/luna -type f | grep -v "Types.h"))
SOURCES+=($(find libluna/src -type f))
SOURCES+=($(find libluna/include/luna -type f | grep -v "Types.h"))
SUCCESS=1