1
Fork 0
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:
joshua stein 2020-01-01 16:19:27 -06:00 committed by Andreas Kling
parent 1d94b5eb04
commit 5fa0291a05
2 changed files with 2 additions and 2 deletions

View file

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

View file

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