1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:07:45 +00:00

HelloWorld: Add a simple "Hello World!" app showing the basics.

This also introduces a Demos/ directory where I hope to add cool things.
This commit is contained in:
Andreas Kling 2019-05-08 01:18:36 +02:00
parent 1930d48a38
commit eaf03d4ddb
5 changed files with 65 additions and 0 deletions

View file

@ -48,6 +48,8 @@ $make_cmd -C ../Games/Snake clean && \
$make_cmd -C ../Games/Snake && \
$make_cmd -C ../Shell clean && \
$make_cmd -C ../Shell && \
$make_cmd -C ../Demos/HelloWorld clean && \
$make_cmd -C ../Demos/HelloWorld && \
$make_cmd clean &&\
$make_cmd && \
sudo ./sync.sh

View file

@ -78,6 +78,7 @@ ln -s Snake mnt/bin/sn
cp -v ../Shell/Shell mnt/bin/Shell
ln -s Shell mnt/bin/sh
cp -v kernel.map mnt/
cp -v ../Demos/HelloWorld/HelloWorld mnt/bin/HelloWorld
# Run local sync script, if it exists
if [ -f sync-local.sh ]; then