blob: 7355e1c85bb9208eb0c59704208c230e3ec09ca5 [file] [log] [blame]
Reid Spencer491f6812004-09-07 06:56:14 +00001#
Reid Spencer4f5f1402004-11-25 04:43:54 +00002# Check for GNU Make. This is originally from
Reid Spencer491f6812004-09-07 06:56:14 +00003# http://www.gnu.org/software/ac-archive/htmldoc/check_gnu_make.html
4#
5AC_DEFUN([AC_CHECK_GNU_MAKE],
Reid Spencer4f5f1402004-11-25 04:43:54 +00006[AC_CACHE_CHECK([for GNU make],[llvm_cv_gnu_make_command],
Reid Spencer491f6812004-09-07 06:56:14 +00007dnl Search all the common names for GNU make
Reid Spencer4f5f1402004-11-25 04:43:54 +00008[llvm_cv_gnu_make_command=''
9 for a in "$MAKE" make gmake gnumake ; do
10 if test -z "$a" ; then continue ; fi ;
11 if ( sh -c "$a --version" 2> /dev/null | grep GNU 2>&1 > /dev/null )
12 then
13 llvm_cv_gnu_make_command=$a ;
14 break;
15 fi
16 done])
17dnl If there was a GNU version, then set @ifGNUmake@ to the empty string,
18dnl '#' otherwise
19 if test "x$llvm_cv_gnu_make_command" != "x" ; then
20 ifGNUmake='' ;
21 else
22 ifGNUmake='#' ;
23 AC_MSG_RESULT("Not found");
24 fi
25 AC_SUBST(ifGNUmake)
Reid Spencer491f6812004-09-07 06:56:14 +000026])