ioq3/build-test.sh

26 lines
410 B
Bash
Raw Normal View History

#!/bin/sh
failed=0;
# check if testing mingw
if [ "$CC" = "i686-w64-mingw-gcc" ]; then
MAKE=./cross-make-mingw.sh
else
MAKE=make
fi
# Default Build
($MAKE clean release) || failed=1;
# Test additional options
($MAKE clean release USE_CODEC_VORBIS=1 USE_FREETYPE=1 CFLAGS=-DRAVENMD4) || failed=1;
if [ $failed -eq 1 ]; then
echo "Build failure.";
else
echo "All builds successful.";
fi
exit $failed;