summaryrefslogtreecommitdiff
path: root/build-test.sh
blob: db582c0cc2434d188980ef3df5c01338772410dc (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
26
#!/bin/sh

failed=0;

# Default Build
(make) || failed=1;

# Test additional options
make clean
(make USE_CODEC_VORBIS=1 USE_FREETYPE=1 CFLAGS=-DRAVENMD4) || failed=1;

# Test mingw (gcc)
if [ "$CC" = "gcc" ]; then
	# clear CC so script will set it.
    export CC=
    (exec ./cross-make-mingw.sh) || failed=1;
fi

if [ $failed -eq 1 ]; then
  echo "Build failure.";
else
  echo "All builds successful.";
fi

exit $failed;