Lines Matching refs:GNUMAKE
62 if test -z "$GNUMAKE"; then
63 GNUMAKE=`which make` && GNUMAKE=$(is_gnu_make $GNUMAKE)
66 if test -z "$GNUMAKE"; then
67 GNUMAKE=`which gmake` && GNUMAKE=$(is_gnu_make $GNUMAKE)
70 if test -z "$GNUMAKE"; then
71 echo "could not find GNU Make on this machine. please define GNUMAKE to point to it"
75 TEST=$(is_gnu_make $GNUMAKE)
77 echo "it seems that '$GNUMAKE' is not a working GNU Make binary. please check the definition of GNUMAKE"
83 #echo "GNUMAKE is $GNUMAKE"
86 $GNUMAKE $source BUILD_QEMU_AUDIO_LIB=true || (echo "could not build the audio library. Aborting" && exit 1)