diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-10 08:35:01 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-10 08:35:01 +0100 |
commit | 2cf1dd5b6f10b898f24203c879290d665531a989 (patch) | |
tree | e06e872f557e489b2d0fe3cb0ea2302e8a72ef91 /Kernel | |
parent | 29f2a22d34554737a67af5b2b2ab8613591383be (diff) | |
download | serenity-2cf1dd5b6f10b898f24203c879290d665531a989.zip |
Move apps into a top-level Applications/ directory.
Diffstat (limited to 'Kernel')
-rwxr-xr-x | Kernel/makeall.sh | 20 | ||||
-rwxr-xr-x | Kernel/makeuserland.sh | 16 | ||||
-rwxr-xr-x | Kernel/sync.sh | 10 |
3 files changed, 25 insertions, 21 deletions
diff --git a/Kernel/makeall.sh b/Kernel/makeall.sh index bde081dd65..3a688d3065 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 ../Terminal clean && \ -make -C ../Terminal && \ -make -C ../FontEditor clean && \ -make -C ../FontEditor && \ -make -C ../Clock clean && \ -make -C ../Clock && \ -make -C ../Launcher clean && \ -make -C ../Launcher && \ -make -C ../FileManager clean && \ -make -C ../FileManager && \ +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 clean &&\ make && \ sudo ./sync.sh diff --git a/Kernel/makeuserland.sh b/Kernel/makeuserland.sh index 1a227dfc30..7d030dccb7 100755 --- a/Kernel/makeuserland.sh +++ b/Kernel/makeuserland.sh @@ -6,12 +6,16 @@ make -C ../LibC clean && \ make -C ../LibC && \ make -C ../LibGUI clean && \ make -C ../LibGUI && \ -make -C ../Terminal clean && \ -make -C ../Terminal && \ -make -C ../Clock clean && \ -make -C ../Clock && \ -make -C ../Launcher clean && \ -make -C ../Launcher && \ +make -C ../Applications/Terminal clean && \ +make -C ../Applications/Terminal && \ +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 -C ../Applications/FontEditor clean && \ +make -C ../Applications/FontEditor && \ make -C ../Userland clean && \ make -C ../Userland && \ sudo ./sync.sh diff --git a/Kernel/sync.sh b/Kernel/sync.sh index 0d99d8b160..9818dbc984 100755 --- a/Kernel/sync.sh +++ b/Kernel/sync.sh @@ -52,15 +52,15 @@ cp -v ../Userland/cp mnt/bin/cp cp -v ../Userland/guitest mnt/bin/guitest cp -v ../Userland/guitest2 mnt/bin/guitest2 cp -v ../Userland/sysctl mnt/bin/sysctl -cp -v ../Terminal/Terminal mnt/bin/Terminal -cp -v ../FontEditor/FontEditor mnt/bin/FontEditor -cp -v ../Launcher/Launcher mnt/bin/Launcher -cp -v ../Clock/Clock mnt/bin/Clock -cp -v ../FileManager/FileManager mnt/bin/FileManager cp -v ../Userland/pape mnt/bin/pape cp -v ../Userland/dmesg mnt/bin/dmesg cp -v ../Userland/chmod mnt/bin/chmod cp -v ../Userland/top mnt/bin/top +cp -v ../Applications/Terminal/Terminal mnt/bin/Terminal +cp -v ../Applications/FontEditor/FontEditor mnt/bin/FontEditor +cp -v ../Applications/Launcher/Launcher mnt/bin/Launcher +cp -v ../Applications/Clock/Clock mnt/bin/Clock +cp -v ../Applications/FileManager/FileManager mnt/bin/FileManager cp -v kernel.map mnt/ sh sync-local.sh umount mnt |