summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorConrad Pankoff <deoxxa@fknsrs.biz>2019-09-16 00:41:03 +1000
committerAndreas Kling <awesomekling@gmail.com>2019-09-16 07:49:43 +0200
commit6fd096999e075aa0cd4d0206764c8201cf23ef87 (patch)
treea30028d6258038fcfb8f777e3bb63979a60bb0af /Kernel
parent0706bf470fc052c406dcf085c68ab378892d5d20 (diff)
downloadserenity-6fd096999e075aa0cd4d0206764c8201cf23ef87.zip
Applications: Add "Welcome" application, inspired by Windows 98
Diffstat (limited to 'Kernel')
-rwxr-xr-xKernel/build-root-filesystem.sh1
-rwxr-xr-xKernel/makeall.sh1
2 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/build-root-filesystem.sh b/Kernel/build-root-filesystem.sh
index ba43882216..ea8f30b9ad 100755
--- a/Kernel/build-root-filesystem.sh
+++ b/Kernel/build-root-filesystem.sh
@@ -87,6 +87,7 @@ cp ../Applications/ChanViewer/ChanViewer mnt/bin/ChanViewer
cp ../Applications/Calculator/Calculator mnt/bin/Calculator
cp ../Applications/SoundPlayer/SoundPlayer mnt/bin/SoundPlayer
cp ../Applications/DisplayProperties/DisplayProperties mnt/bin/DisplayProperties
+cp ../Applications/Welcome/Welcome mnt/bin/Welcome
cp ../Demos/HelloWorld/HelloWorld mnt/bin/HelloWorld
cp ../Demos/HelloWorld2/HelloWorld2 mnt/bin/HelloWorld2
cp ../Demos/RetroFetch/RetroFetch mnt/bin/RetroFetch
diff --git a/Kernel/makeall.sh b/Kernel/makeall.sh
index 8a78791018..29913554b3 100755
--- a/Kernel/makeall.sh
+++ b/Kernel/makeall.sh
@@ -57,6 +57,7 @@ build_targets="$build_targets ../Applications/Taskbar"
build_targets="$build_targets ../Applications/Terminal"
build_targets="$build_targets ../Applications/TextEditor"
build_targets="$build_targets ../Applications/SoundPlayer"
+build_targets="$build_targets ../Applications/Welcome"
build_targets="$build_targets ../Demos/Fire"
build_targets="$build_targets ../Demos/HelloWorld"