mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:27:45 +00:00
Build: fix building Kernel/TestModule object
This commit is contained in:
parent
1d94b5eb04
commit
5fa0291a05
2 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ OBJS = \
|
||||||
|
|
||||||
OBJ_SUFFIX = .kernel
|
OBJ_SUFFIX = .kernel
|
||||||
|
|
||||||
MODULE_OBJS = TestModule.o
|
MODULE_OBJS = TestModule$(OBJ_SUFFIX).o
|
||||||
|
|
||||||
EXTRA_OBJS = Arch/i386/Boot/boot.ao
|
EXTRA_OBJS = Arch/i386/Boot/boot.ao
|
||||||
|
|
||||||
|
|
|
@ -166,7 +166,7 @@ mkdir -p mnt/boot/
|
||||||
cp kernel mnt/boot/
|
cp kernel mnt/boot/
|
||||||
|
|
||||||
mkdir -p mnt/mod/
|
mkdir -p mnt/mod/
|
||||||
cp TestModule.o mnt/mod
|
cp TestModule.kernel.o mnt/mod/TestModule.o
|
||||||
|
|
||||||
# Run local sync script, if it exists
|
# Run local sync script, if it exists
|
||||||
if [ -f sync-local.sh ]; then
|
if [ -f sync-local.sh ]; then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue