## FIXME: more precise in the removal of the suffix?
am__depbase = $(am__depdir)/$(basename $(notdir $@))
## Avoid useless forks when possible.
-am__ensure_depdir = $(call am__ensure_dir_exists,$(am__depdir))
+am__ensure_depdir = $(call am.cmd.ensure-dir-exists,$(am__depdir))
am__o_src = $(if $(filter .obj,$(suffix $@)),`$(CYGPATH_W) $<`,$<)
## To facilitate use of "libtool --dry-run".
am__mv = mv -f
# try to optimize for those cases -- especially because, for our
# usage patterns, one of them should always be true in non-VPATH
# builds.
-am__ensure_dir_exists = \
+am.cmd.ensure-dir-exists = \
$(if $(filter .,$1),:,$(if $(wildcard $1/),:,$(MKDIR_P) $1))
# Ensure the directory containing the target of the current recipe
# exists, by creating it if necessary.
-am__ensure_target_dir_exists = $(call am__ensure_dir_exists,$(@D))
+am__ensure_target_dir_exists = $(call am.cmd.ensure-dir-exists,$(@D))
# The 'all' target must be the default one, independently from the
# position it is declared in the output Makefile.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-# Test Automake-provided internal macro 'am__ensure_dir_exists'.
+# Test Automake-provided internal macro 'am.cmd.ensure-dir-exists'.
am_create_testdir=empty
. ./defs || exit 1
.PHONY: all
sanity-check:
- $(warning $(call am__ensure_dir_exists,x))
- $(if $(filter $(call am__ensure_dir_exists,x),:MKDIR_P:),, \
- $(error am__ensure_dir_exists does not contain $$(MKDIR_P)))
+ $(warning $(call am.cmd.ensure-dir-exists,x))
+ $(if $(filter $(call am.cmd.ensure-dir-exists,x),:MKDIR_P:),, \
+ $(error am.cmd.ensure-dir-exists does not contain $$(MKDIR_P)))
.PHONY: sanity-check
$(files):
- $(call am__ensure_dir_exists,x)
+ $(call am.cmd.ensure-dir-exists,x)
echo dummy > $@
END