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

Minesweeper: Start working on a simple minesweeper game. :^)

This commit is contained in:
Andreas Kling 2019-04-13 03:08:16 +02:00
parent c06a3bdeb4
commit a90e218c71
17 changed files with 288 additions and 1 deletions

View file

@ -42,6 +42,8 @@ $make_cmd -C ../Applications/Downloader clean && \
$make_cmd -C ../Applications/Downloader && \
$make_cmd -C ../Applications/VisualBuilder clean && \
$make_cmd -C ../Applications/VisualBuilder && \
$make_cmd -C ../Applications/Games/Minesweeper clean && \
$make_cmd -C ../Applications/Games/Minesweeper && \
$make_cmd clean &&\
$make_cmd && \
sudo ./sync.sh

View file

@ -99,6 +99,8 @@ cp -v ../Applications/Downloader/Downloader mnt/bin/Downloader
ln -s Downloader mnt/bin/dl
cp -v ../Applications/VisualBuilder/VisualBuilder mnt/bin/VisualBuilder
ln -s VisualBuilder mnt/bin/vb
cp -v ../Games/Minesweeper/Minesweeper mnt/bin/Minesweeper
ln -s Minesweeper mnt/bin/ms
cp -v kernel.map mnt/
sh sync-local.sh
umount mnt || ( sleep 0.5 && sync && umount mnt )