Skip to content

Commit

Permalink
Move apps into a top-level Applications/ directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
awesomekling committed Feb 10, 2019
1 parent 29f2a22 commit 2cf1dd5
Show file tree
Hide file tree
Showing 27 changed files with 30 additions and 26 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Clock/Makefile → Applications/Clock/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ USERLAND_FLAGS = -ffreestanding -fno-stack-protector -fno-ident
WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings
FLAVOR_FLAGS = -march=i386 -m32 -fno-exceptions -fno-rtti -fmerge-all-constants -fno-unroll-loops -fno-pie -fno-pic
OPTIMIZATION_FLAGS = -Oz -fno-asynchronous-unwind-tables
INCLUDE_FLAGS = -I.. -I. -I../LibC
INCLUDE_FLAGS = -I../.. -I. -I../../LibC

DEFINES = -DSERENITY -DSANITIZE_PTRS -DUSERLAND

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion FileManager/Makefile → Applications/FileManager/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ USERLAND_FLAGS = -ffreestanding -fno-stack-protector -fno-ident
WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings
FLAVOR_FLAGS = -march=i386 -m32 -fno-exceptions -fno-rtti -fmerge-all-constants -fno-unroll-loops -fno-pie -fno-pic
OPTIMIZATION_FLAGS = -Oz -fno-asynchronous-unwind-tables
INCLUDE_FLAGS = -I.. -I. -I../LibC
INCLUDE_FLAGS = -I../.. -I. -I../../LibC

DEFINES = -DSERENITY -DSANITIZE_PTRS -DUSERLAND

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion FontEditor/Makefile → Applications/FontEditor/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ USERLAND_FLAGS = -ffreestanding -fno-stack-protector -fno-ident
WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings
FLAVOR_FLAGS = -march=i386 -m32 -fno-exceptions -fno-rtti -fmerge-all-constants -fno-unroll-loops -fno-pie -fno-pic
OPTIMIZATION_FLAGS = -Oz -fno-asynchronous-unwind-tables
INCLUDE_FLAGS = -I.. -I. -I../LibC
INCLUDE_FLAGS = -I../.. -I. -I../../LibC

DEFINES = -DSERENITY -DSANITIZE_PTRS -DUSERLAND

Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Launcher/Makefile → Applications/Launcher/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ USERLAND_FLAGS = -ffreestanding -fno-stack-protector -fno-ident
WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings
FLAVOR_FLAGS = -march=i386 -m32 -fno-exceptions -fno-rtti -fmerge-all-constants -fno-unroll-loops -fno-pie -fno-pic
OPTIMIZATION_FLAGS = -Oz -fno-asynchronous-unwind-tables
INCLUDE_FLAGS = -I.. -I. -I../LibC
INCLUDE_FLAGS = -I../.. -I. -I../../LibC

DEFINES = -DSERENITY -DSANITIZE_PTRS -DUSERLAND

Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Terminal/Makefile → Applications/Terminal/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ USERLAND_FLAGS = -ffreestanding -fno-stack-protector -fno-ident
WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings
FLAVOR_FLAGS = -march=i386 -m32 -fno-exceptions -fno-rtti -fmerge-all-constants -fno-unroll-loops -fno-pie -fno-pic
OPTIMIZATION_FLAGS = -Oz -fno-asynchronous-unwind-tables
INCLUDE_FLAGS = -I.. -I. -I../LibC
INCLUDE_FLAGS = -I../.. -I. -I../../LibC

DEFINES = -DSERENITY -DSANITIZE_PTRS -DUSERLAND

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
20 changes: 10 additions & 10 deletions Kernel/makeall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 10 additions & 6 deletions Kernel/makeuserland.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions Kernel/sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2cf1dd5

Please sign in to comment.