mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-06 21:45:29 +00:00
I need a layer somewhere between AK (usable both by userspace and kernel) and LibGUI (usable by userspace except WindowServer.) So here's LibCore.
47 lines
1.6 KiB
Bash
Executable File
47 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
sudo id
|
|
|
|
make_cmd="make -j3"
|
|
|
|
$make_cmd -C ../LibC clean && \
|
|
$make_cmd -C ../LibC && \
|
|
(cd ../LibC && ./install.sh) && \
|
|
$make_cmd -C ../LibM clean && \
|
|
$make_cmd -C ../LibM && \
|
|
(cd ../LibM && ./install.sh) && \
|
|
$make_cmd -C ../LibCore clean && \
|
|
$make_cmd -C ../LibCore && \
|
|
$make_cmd -C ../Servers/LookupServer clean && \
|
|
$make_cmd -C ../Servers/LookupServer && \
|
|
$make_cmd -C ../Servers/WindowServer clean && \
|
|
$make_cmd -C ../Servers/WindowServer && \
|
|
$make_cmd -C ../LibGUI clean && \
|
|
$make_cmd -C ../LibGUI && \
|
|
$make_cmd -C ../Userland clean && \
|
|
$make_cmd -C ../Userland && \
|
|
$make_cmd -C ../Applications/Terminal clean && \
|
|
$make_cmd -C ../Applications/Terminal && \
|
|
$make_cmd -C ../Applications/FontEditor clean && \
|
|
$make_cmd -C ../Applications/FontEditor && \
|
|
$make_cmd -C ../Applications/Launcher clean && \
|
|
$make_cmd -C ../Applications/Launcher && \
|
|
$make_cmd -C ../Applications/FileManager clean && \
|
|
$make_cmd -C ../Applications/FileManager && \
|
|
$make_cmd -C ../Applications/ProcessManager clean && \
|
|
$make_cmd -C ../Applications/ProcessManager && \
|
|
$make_cmd -C ../Applications/TextEditor clean && \
|
|
$make_cmd -C ../Applications/TextEditor && \
|
|
$make_cmd -C ../Applications/About clean && \
|
|
$make_cmd -C ../Applications/About && \
|
|
$make_cmd -C ../Applications/IRCClient clean && \
|
|
$make_cmd -C ../Applications/IRCClient && \
|
|
$make_cmd -C ../Applications/Taskbar clean && \
|
|
$make_cmd -C ../Applications/Taskbar && \
|
|
$make_cmd -C ../Applications/Downloader clean && \
|
|
$make_cmd -C ../Applications/Downloader && \
|
|
$make_cmd clean &&\
|
|
$make_cmd && \
|
|
sudo ./sync.sh
|
|
|