summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4')
-rw-r--r--m4/check_make.m433
1 files changed, 33 insertions, 0 deletions
diff --git a/m4/check_make.m4 b/m4/check_make.m4
new file mode 100644
index 0000000000..343913f884
--- /dev/null
+++ b/m4/check_make.m4
@@ -0,0 +1,33 @@
+dnl SMB Build Environment make Checks
+dnl -------------------------------------------------------
+dnl Copyright (C) Stefan (metze) Metzmacher 2004
+dnl Copyright (C) Jelmer Vernooij 2005
+dnl Released under the GNU GPL
+dnl -------------------------------------------------------
+dnl
+
+AC_DEFUN([AC_SAMBA_GNU_MAKE],
+[
+AC_PATH_PROGS(MAKE,gmake make)
+
+AC_CACHE_CHECK([whether we have GNU make], samba_cv_gnu_make, [
+if ! $ac_cv_path_MAKE --version | head -1 | grep GNU 2>/dev/null >/dev/null
+then
+ samba_cv_gnu_make=no
+else
+ samba_cv_gnu_make=yes
+fi
+])
+if test x$samba_cv_gnu_make = xyes; then
+ $1
+else
+ $2
+fi
+])
+
+AC_DEFUN([AC_SAMBA_GNU_MAKE_VERSION],
+[
+AC_CACHE_CHECK([GNU make version], samba_cv_gnu_make_version,[
+ samba_cv_gnu_make_version=`$ac_cv_path_MAKE --version | head -1 | cut -d " " -f 3 2>/dev/null`
+ ])
+])