mirror of
https://github.com/RGBCube/serenity
synced 2025-05-26 01:55:08 +00:00
Move WindowServer into Servers.
This commit is contained in:
parent
9120b05a40
commit
d17a91f185
32 changed files with 14 additions and 14 deletions
|
@ -16,7 +16,7 @@ STANDARD_FLAGS = -std=c++17
|
||||||
WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings -Wimplicit-fallthrough
|
WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings -Wimplicit-fallthrough
|
||||||
FLAVOR_FLAGS = -fno-exceptions -fno-rtti
|
FLAVOR_FLAGS = -fno-exceptions -fno-rtti
|
||||||
OPTIMIZATION_FLAGS = -Os
|
OPTIMIZATION_FLAGS = -Os
|
||||||
INCLUDE_FLAGS = -I../.. -I. -I../../LibC
|
INCLUDE_FLAGS = -I../../Servers -I../.. -I. -I../../LibC
|
||||||
|
|
||||||
DEFINES = -DSERENITY -DSANITIZE_PTRS -DUSERLAND
|
DEFINES = -DSERENITY -DSANITIZE_PTRS -DUSERLAND
|
||||||
|
|
||||||
|
|
|
@ -14,8 +14,8 @@ $make_cmd -C ../LibM clean && \
|
||||||
$make_cmd -C ../LibM clean && \
|
$make_cmd -C ../LibM clean && \
|
||||||
$make_cmd -C ../Servers/LookupServer clean && \
|
$make_cmd -C ../Servers/LookupServer clean && \
|
||||||
$make_cmd -C ../Servers/LookupServer && \
|
$make_cmd -C ../Servers/LookupServer && \
|
||||||
$make_cmd -C ../WindowServer clean && \
|
$make_cmd -C ../Servers/WindowServer clean && \
|
||||||
$make_cmd -C ../WindowServer && \
|
$make_cmd -C ../Servers/WindowServer && \
|
||||||
$make_cmd -C ../LibGUI clean && \
|
$make_cmd -C ../LibGUI clean && \
|
||||||
$make_cmd -C ../LibGUI && \
|
$make_cmd -C ../LibGUI && \
|
||||||
$make_cmd -C ../Userland clean && \
|
$make_cmd -C ../Userland clean && \
|
||||||
|
|
|
@ -89,7 +89,7 @@ cp -v ../Applications/TextEditor/TextEditor mnt/bin/TextEditor
|
||||||
cp -v ../Applications/IRCClient/IRCClient mnt/bin/IRCClient
|
cp -v ../Applications/IRCClient/IRCClient mnt/bin/IRCClient
|
||||||
ln -s IRCClient mnt/bin/irc
|
ln -s IRCClient mnt/bin/irc
|
||||||
cp -v ../Servers/LookupServer/LookupServer mnt/bin/LookupServer
|
cp -v ../Servers/LookupServer/LookupServer mnt/bin/LookupServer
|
||||||
cp -v ../WindowServer/WindowServer mnt/bin/WindowServer
|
cp -v ../Servers/WindowServer/WindowServer mnt/bin/WindowServer
|
||||||
cp -v kernel.map mnt/
|
cp -v kernel.map mnt/
|
||||||
sh sync-local.sh
|
sh sync-local.sh
|
||||||
umount mnt
|
umount mnt
|
||||||
|
|
|
@ -56,7 +56,7 @@ STANDARD_FLAGS = -std=c++17
|
||||||
WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings -Wimplicit-fallthrough
|
WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings -Wimplicit-fallthrough
|
||||||
FLAVOR_FLAGS = -fno-exceptions -fno-rtti
|
FLAVOR_FLAGS = -fno-exceptions -fno-rtti
|
||||||
OPTIMIZATION_FLAGS = -Os
|
OPTIMIZATION_FLAGS = -Os
|
||||||
INCLUDE_FLAGS = -I../LibC -I.. -I.
|
INCLUDE_FLAGS = -I../LibC -I../Servers -I.. -I.
|
||||||
|
|
||||||
DEFINES = -DSERENITY -DUSERLAND -DSANITIZE_PTRS -DLIBGUI
|
DEFINES = -DSERENITY -DUSERLAND -DSANITIZE_PTRS -DLIBGUI
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
SHAREDGRAPHICS_OBJS = \
|
SHAREDGRAPHICS_OBJS = \
|
||||||
../SharedGraphics/Painter.o \
|
../../SharedGraphics/Painter.o \
|
||||||
../SharedGraphics/Font.o \
|
../../SharedGraphics/Font.o \
|
||||||
../SharedGraphics/Rect.o \
|
../../SharedGraphics/Rect.o \
|
||||||
../SharedGraphics/GraphicsBitmap.o \
|
../../SharedGraphics/GraphicsBitmap.o \
|
||||||
../SharedGraphics/CharacterBitmap.o \
|
../../SharedGraphics/CharacterBitmap.o \
|
||||||
../SharedGraphics/DisjointRectSet.o \
|
../../SharedGraphics/DisjointRectSet.o \
|
||||||
../SharedGraphics/Color.o
|
../../SharedGraphics/Color.o
|
||||||
|
|
||||||
WINDOWSERVER_OBJS = \
|
WINDOWSERVER_OBJS = \
|
||||||
WSMessageReceiver.o \
|
WSMessageReceiver.o \
|
||||||
|
@ -28,8 +28,8 @@ STANDARD_FLAGS = -std=c++17
|
||||||
WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings -Wimplicit-fallthrough
|
WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings -Wimplicit-fallthrough
|
||||||
FLAVOR_FLAGS = -fno-exceptions -fno-rtti
|
FLAVOR_FLAGS = -fno-exceptions -fno-rtti
|
||||||
OPTIMIZATION_FLAGS = -Os
|
OPTIMIZATION_FLAGS = -Os
|
||||||
INCLUDE_FLAGS = -I.. -I. -I../LibC
|
INCLUDE_FLAGS = -I.. -I../.. -I. -I../../LibC
|
||||||
LDFLAGS = -L../LibC
|
LDFLAGS = -L../../LibC
|
||||||
|
|
||||||
DEFINES = -DSERENITY -DSANITIZE_PTRS -DUSERLAND
|
DEFINES = -DSERENITY -DSANITIZE_PTRS -DUSERLAND
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue