mirror of
https://github.com/ceph/ceph
synced 2024-12-18 01:16:55 +00:00
bc48ef0fef
The SELinux man page was previously located in two places and the man page that was supposed to be updated when rgw selinux changes were proposed did not get updated properly. Fixing this by moving selinux/ceph_selinux.8 to man/ceph_selinux.8. Also, populate EXTRA_DIST with ceph_selinux.8. Signed-off-by: Boris Ranto <branto@redhat.com>
32 lines
669 B
Makefile
32 lines
669 B
Makefile
AUTOMAKE_OPTIONS = gnu
|
|
|
|
EXTRA_DIST = conf.py ceph_selinux.8
|
|
|
|
dist_man_MANS =
|
|
|
|
if WITH_MAN_PAGES
|
|
if ENABLE_CLIENT
|
|
include Makefile-client.am
|
|
endif
|
|
|
|
if ENABLE_SERVER
|
|
include Makefile-server.am
|
|
endif
|
|
|
|
# prevent `make` from running in parallel, sphinx runs better in batch mode.
|
|
.PHONY: sphinx-build.stamp
|
|
|
|
$(dist_man_MANS): sphinx-build.stamp
|
|
|
|
# in a tree populated from dist tarball, the $(top_srcdir)/doc is not included
|
|
sphinx-build.stamp:
|
|
if [ -d $(top_srcdir)/doc/man ] ; then \
|
|
${SPHINX_BUILD} -b man -d doctrees -c $(top_srcdir)/man $(top_srcdir)/doc/man $(top_builddir)/man; \
|
|
fi
|
|
|
|
clean-local:
|
|
@rm -rf doctrees
|
|
|
|
MAINTAINERCLEANFILES = $(dist_man_MANS)
|
|
endif
|