diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-17 00:13:47 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-17 00:13:47 +0100 |
commit | 640360e958d6dea05ba0e294af52160bc10725cb (patch) | |
tree | 509ac7609062108169b8332064ebfae40edef1c6 /Kernel/makeall.sh | |
parent | 0b1b21d62286b73b8c59a2ce12e75a6de0f84f13 (diff) | |
download | serenity-640360e958d6dea05ba0e294af52160bc10725cb.zip |
Move WindowServer to userspace.
This is a monster patch that required changing a whole bunch of things.
There are performance and stability issues all over the place, but it works.
Pretty cool, I have to admit :^)
Diffstat (limited to 'Kernel/makeall.sh')
-rwxr-xr-x | Kernel/makeall.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/makeall.sh b/Kernel/makeall.sh index 911756622f..5dd42bc9dd 100755 --- a/Kernel/makeall.sh +++ b/Kernel/makeall.sh @@ -10,6 +10,8 @@ $make_cmd -C ../LibGUI clean && \ $make_cmd -C ../LibGUI && \ $make_cmd -C ../Userland clean && \ $make_cmd -C ../Userland && \ +$make_cmd -C ../WindowServer clean && \ +$make_cmd -C ../WindowServer && \ $make_cmd -C ../Applications/Terminal clean && \ $make_cmd -C ../Applications/Terminal && \ $make_cmd -C ../Applications/FontEditor clean && \ |