pokeplatinum/build.sh

13 lines
209 B
Bash
Executable File

#!/bin/sh
target="test"
if [ "$#" -ge 1 ]; then
target="$1"
shift
fi
# Set up env variable to show % of completion during ninja build
export NINJA_STATUS="[%p %f/%t] "
ninja -C build "$target" "$@"