serenity/Kernel/makeall.sh

26 lines
461 B
Bash
Raw Normal View History

#!/bin/sh
set -e
script_path=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
cd "$script_path"
# Get user and group details for setting qemu disk image ownership
build_user=$(id -u)
build_group=$(id -g)
export build_user
export build_group
sudo id
MAKE=make
if [ "$(uname -s)" = "OpenBSD" ]; then
MAKE=gmake
fi
$MAKE -C ../ clean && \
$MAKE -C ../ && \
$MAKE -C ../ test && \
$MAKE -C ../ install &&
sudo -E PATH="$PATH" ./build-image-qemu.sh