]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
automake: use :: rule for adding target 8875/head
authorKefu Chai <kchai@redhat.com>
Mon, 2 May 2016 11:40:05 +0000 (19:40 +0800)
committerKefu Chai <kchai@redhat.com>
Tue, 3 May 2016 02:35:28 +0000 (10:35 +0800)
Signed-off-by: Kefu Chai <kchai@redhat.com>
Makefile.am
man/Makefile.am
selinux/Makefile.am
src/Makefile.am

index 81cb29038c68e5369f716710e8c6f1923cef6deb..81b772734517f4593d63d762886cfa4ba0ce33f3 100644 (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; \
index 40506babd5e05de6286cc911d41b46eb50160b78..710d6ea005bfeea77d3b189e233b4834d900240e 100644 (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)
index 280e7ecd4be6d56361af3250ca0598ed750e3778..a4281c11ac6aa9eb3de65527712e04f2272b81ab 100644 (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
index a11325e7feda6ee3b160945f3796bdc081d41f7f..a4cf68b797d302e5d1d3e28540f8ccfd8a37d955 100644 (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)