mirror of
https://github.com/ceph/ceph
synced 2025-03-06 16:28:28 +00:00
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:
commit
13b144aa34
@ -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; \
|
||||
|
@ -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)
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user