nuclide/build_game.sh

12 lines
263 B
Bash
Raw Normal View History

#!/bin/sh
set -e
SCRIPT_LOCATION="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
PATH="$SCRIPT_LOCATION"/bin:"$PATH"
if [ -f "$SCRIPT_LOCATION"/bin/fteqcc ]; then
cd ./src
make
else
printf "FTEQCC compiler is not present, please run build_engine.sh\n"
fi