summaryrefslogtreecommitdiff
path: root/Kernel/Makefile
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-07-29 10:55:29 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-07-29 11:19:04 +0200
commitc59fdcc021f2c57a6619f4dbc2bb9948bb6bf31c (patch)
treea8b2b9d281a59b13bc0ff957e5699745e7e3a1b1 /Kernel/Makefile
parent5ded77df39e816f565b26761624893d085ca6eef (diff)
downloadserenity-c59fdcc021f2c57a6619f4dbc2bb9948bb6bf31c.zip
Kernel: Move Lock code out-of-line.
It's so big and chunky anyway, it's silly to expand it everywhere. This makes it a lot easier to read function disassembly dumps.
Diffstat (limited to 'Kernel/Makefile')
-rw-r--r--Kernel/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile
index 65325a1ad0..9dcccc2ef4 100644
--- a/Kernel/Makefile
+++ b/Kernel/Makefile
@@ -4,6 +4,7 @@ KERNEL_OBJS = \
init.o \
kmalloc.o \
StdLib.o \
+ Lock.o \
Arch/i386/CPU.o \
Process.o \
SharedBuffer.o \