Merge pull request #8875 from tchaikov/wip-double-colon

automake: use :: rule for adding target

Reviewed-by: Loic Dachary <ldachary@redhat.com>
This commit is contained in:
Loic Dachary 2016-05-03 10:08:56 +02:00
commit 13b144aa34
4 changed files with 8 additions and 8 deletions

View File

@ -72,7 +72,7 @@ check_SCRIPTS = \
# "make distclean" both runs this and recurses into src/gtest, if
# gtest is in DIST_SUBDIRS. Take extra care to not fail when
# effectively cleaned twice.
clean-local:
clean-local::
@if test -e src/gmock/Makefile; then \
echo "Making clean in src/gmock"; \
cd src/gmock && $(MAKE) $(AM_MAKEFLAGS) clean; \

View File

@ -24,7 +24,7 @@ sphinx-build.stamp:
${SPHINX_BUILD} -b man -d doctrees -c $(top_srcdir)/man $(top_srcdir)/doc/man $(top_builddir)/man; \
fi
clean-local:
clean-local::
@rm -rf doctrees
MAINTAINERCLEANFILES = $(dist_man_MANS)

View File

@ -10,9 +10,9 @@ ceph.pp: ceph.te ceph.fc ceph.if
if ENABLE_SERVER
if WITH_SELINUX
all-local: ceph.pp
all-local:: ceph.pp
install-exec-local:
install-exec-local::
$(INSTALL) -d $(SELINUXROOT)/packages
$(INSTALL) -m 644 ceph.pp $(SELINUXROOT)/packages/
$(INSTALL) -d $(SELINUXROOT)/devel/include/contrib

View File

@ -316,7 +316,7 @@ endif
# local targets
all-local: $(LOCAL_ALL)
clean-local: $(LOCAL_CLEAN)
install-exec-local: $(LOCAL_INSTALLEXEC)
install-data-local: $(LOCAL_INSTALLDATA)
all-local:: $(LOCAL_ALL)
clean-local:: $(LOCAL_CLEAN)
install-exec-local:: $(LOCAL_INSTALLEXEC)
install-data-local:: $(LOCAL_INSTALLDATA)