summaryrefslogtreecommitdiff
path: root/projects/sample/autoconf/m4/check_gnu_make.m4
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2011-10-18 23:10:47 +0000
committerDaniel Dunbar <daniel@zuster.org>2011-10-18 23:10:47 +0000
commit2532fa21a963edf53183357edfc79a9361b44435 (patch)
tree437546067c905d1d6cd931a47b663c548c290607 /projects/sample/autoconf/m4/check_gnu_make.m4
parent857bf8341498448851fd7205e48307138823698b (diff)
downloadllvm-2532fa21a963edf53183357edfc79a9361b44435.tar.gz
llvm-2532fa21a963edf53183357edfc79a9361b44435.tar.bz2
llvm-2532fa21a963edf53183357edfc79a9361b44435.tar.xz
projects/sample: Import adapted form of current LLVM autoconf/Makefile setup so that projects/sample is standalone and not tied to the LLVM build setup.
- This currently just moves over all of the behavior from LLVM. Eventually all of the configure checks that are directly needed by the LLVM build setup should probably go away, and the project should manage their own configuration checks if necessary. - This is the 1st half of this work, the actual Makefile.common hasn't moved over yet. I've tried to stage this in such a way that incremental builds will properly reconfigure for most active developers (the Makefiles don't handle reconfiguring in a perfectly reliable way, and I haven't found an easy way to make them do so). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142456 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects/sample/autoconf/m4/check_gnu_make.m4')
-rw-r--r--projects/sample/autoconf/m4/check_gnu_make.m426
1 files changed, 26 insertions, 0 deletions
diff --git a/projects/sample/autoconf/m4/check_gnu_make.m4 b/projects/sample/autoconf/m4/check_gnu_make.m4
new file mode 100644
index 0000000000..7355e1c85b
--- /dev/null
+++ b/projects/sample/autoconf/m4/check_gnu_make.m4
@@ -0,0 +1,26 @@
+#
+# Check for GNU Make. This is originally from
+# http://www.gnu.org/software/ac-archive/htmldoc/check_gnu_make.html
+#
+AC_DEFUN([AC_CHECK_GNU_MAKE],
+[AC_CACHE_CHECK([for GNU make],[llvm_cv_gnu_make_command],
+dnl Search all the common names for GNU make
+[llvm_cv_gnu_make_command=''
+ for a in "$MAKE" make gmake gnumake ; do
+ if test -z "$a" ; then continue ; fi ;
+ if ( sh -c "$a --version" 2> /dev/null | grep GNU 2>&1 > /dev/null )
+ then
+ llvm_cv_gnu_make_command=$a ;
+ break;
+ fi
+ done])
+dnl If there was a GNU version, then set @ifGNUmake@ to the empty string,
+dnl '#' otherwise
+ if test "x$llvm_cv_gnu_make_command" != "x" ; then
+ ifGNUmake='' ;
+ else
+ ifGNUmake='#' ;
+ AC_MSG_RESULT("Not found");
+ fi
+ AC_SUBST(ifGNUmake)
+])