blob: d40587bf7abf6d6a7d7bf512b4ec008daad27528 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/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;
|