diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-10 11:07:13 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-10 11:07:13 +0100 |
commit | 2def3d8d3ff3c913919cd64b2bf75b77ee57d1cf (patch) | |
tree | b4e92858629468605876ef0e9c48e9391019843e /Kernel/makeall.sh | |
parent | 2cf1dd5b6f10b898f24203c879290d665531a989 (diff) | |
download | serenity-2def3d8d3ff3c913919cd64b2bf75b77ee57d1cf.zip |
LibGUI: Start adding an automatic widget layout system.
My needs are really quite simple, so I'm just going to add what I need
as I go along. The first thing I needed was a simple box layout with
widgets being able to say whether they prefer fixed or fill for both
their vertical and horizontal sizes.
I also made a simple GStatusBar so FileManager can show how many bytes
worth of files are in the current directory.
Diffstat (limited to 'Kernel/makeall.sh')
-rwxr-xr-x | Kernel/makeall.sh | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Kernel/makeall.sh b/Kernel/makeall.sh index 3a688d3065..5e3a145c75 100755 --- a/Kernel/makeall.sh +++ b/Kernel/makeall.sh @@ -8,16 +8,16 @@ make -C ../LibGUI clean && \ make -C ../LibGUI && \ make -C ../Userland clean && \ make -C ../Userland && \ -make -C ../Application/Terminal clean && \ -make -C ../Application/Terminal && \ -make -C ../Application/FontEditor clean && \ -make -C ../Application/FontEditor && \ -make -C ../Application/Clock clean && \ -make -C ../Application/Clock && \ -make -C ../Application/Launcher clean && \ -make -C ../Application/Launcher && \ -make -C ../Application/FileManager clean && \ -make -C ../Application/FileManager && \ +make -C ../Applications/Terminal clean && \ +make -C ../Applications/Terminal && \ +make -C ../Applications/FontEditor clean && \ +make -C ../Applications/FontEditor && \ +make -C ../Applications/Clock clean && \ +make -C ../Applications/Clock && \ +make -C ../Applications/Launcher clean && \ +make -C ../Applications/Launcher && \ +make -C ../Applications/FileManager clean && \ +make -C ../Applications/FileManager && \ make clean &&\ make && \ sudo ./sync.sh |