summaryrefslogtreecommitdiff
path: root/m4/ax_add_recursive_am_macro.m4
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2007-02-18 23:43:16 +0100
committerPeter Simons <simons@cryp.to>2007-02-18 23:43:16 +0100
commit16aee45643e593e2833e4dff19df7b5f14267a79 (patch)
treeba40c1ee401bbbcec7dbee5e3bb51d21c70db130 /m4/ax_add_recursive_am_macro.m4
downloadautoconf-archive-16aee45643e593e2833e4dff19df7b5f14267a79.tar.gz
Imported http://autoconf-archive.cryp.to/ release 2007-02-14.
Diffstat (limited to 'm4/ax_add_recursive_am_macro.m4')
-rw-r--r--m4/ax_add_recursive_am_macro.m447
1 files changed, 47 insertions, 0 deletions
diff --git a/m4/ax_add_recursive_am_macro.m4 b/m4/ax_add_recursive_am_macro.m4
new file mode 100644
index 0000000..346bdef
--- /dev/null
+++ b/m4/ax_add_recursive_am_macro.m4
@@ -0,0 +1,47 @@
+##### http://autoconf-archive.cryp.to/ax_add_recursive_am_macro.html
+#
+# SYNOPSIS
+#
+# AX_ADD_RECURSIVE_AM_MACRO([TARGET],[RULE])
+#
+# DESCRIPTION
+#
+# Adds the specified rule to $AMINCLUDE along with a TARGET-recursive
+# rule that will call TARGET for the current directory and TARGET-am
+# recursively for each subdirectory
+#
+# LAST MODIFICATION
+#
+# 2005-01-14
+#
+# COPYLEFT
+#
+# Copyright (c) 2005 Tom Howard <tomhoward@users.sf.net>
+#
+# Copying and distribution of this file, with or without
+# modification, are permitted in any medium without royalty provided
+# the copyright notice and this notice are preserved.
+
+AC_DEFUN([AX_ADD_RECURSIVE_AM_MACRO],[
+ AX_ADD_AM_MACRO([
+$1-recursive:
+ @set fnord ${AX_DOLLAR}${AX_DOLLAR}MAKEFLAGS; amf=${AX_DOLLAR}${AX_DOLLAR}2; \\
+ dot_seen=no; \\
+ list='${AX_DOLLAR}(SUBDIRS)'; for subdir in ${AX_DOLLAR}${AX_DOLLAR}list; do \\
+ echo \"Making $1 in ${AX_DOLLAR}${AX_DOLLAR}subdir\"; \\
+ if test \"${AX_DOLLAR}${AX_DOLLAR}subdir\" = \".\"; then \\
+ dot_seen=yes; \\
+ local_target=\"$1-am\"; \\
+ else \\
+ local_target=\"$1\"; \\
+ fi; \\
+ (cd ${AX_DOLLAR}${AX_DOLLAR}subdir && ${AX_DOLLAR}(MAKE) ${AX_DOLLAR}(AM_MAKEFLAGS) ${AX_DOLLAR}${AX_DOLLAR}local_target) \\
+ || case \"${AX_DOLLAR}${AX_DOLLAR}amf\" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \\
+ done; \\
+ if test \"${AX_DOLLAR}${AX_DOLLAR}dot_seen\" = \"no\"; then \\
+ ${AX_DOLLAR}(MAKE) ${AX_DOLLAR}(AM_MAKEFLAGS) \"$1-am\" || exit 1; \\
+ fi; test -z \"${AX_DOLLAR}${AX_DOLLAR}fail\"
+
+$2
+])
+])