summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorSage Weil <sage@redhat.com>2016-09-07 11:50:14 -0400
committerSage Weil <sage@redhat.com>2016-09-07 11:50:14 -0400
commitfba798dcad1a341cf72d02f65d840997cdb02caa (patch)
tree2c0e97461830de5e4b5d0b650c2d3ae767bdf411 /man
parent68cf9d82c0cabef37c4016e655ae80e5954b19af (diff)
downloadceph-fba798dcad1a341cf72d02f65d840997cdb02caa.tar.gz
remove autotools
Signed-off-by: Sage Weil <sage@redhat.com>
Diffstat (limited to 'man')
-rw-r--r--man/.gitignore1
-rw-r--r--man/Makefile-client.am37
-rw-r--r--man/Makefile-server.am33
-rw-r--r--man/Makefile.am31
4 files changed, 0 insertions, 102 deletions
diff --git a/man/.gitignore b/man/.gitignore
index b60d7fc395a..26b02c47cc5 100644
--- a/man/.gitignore
+++ b/man/.gitignore
@@ -1,3 +1,2 @@
-/Makefile
/*.8
/doctrees
diff --git a/man/Makefile-client.am b/man/Makefile-client.am
deleted file mode 100644
index 0c4b6129f20..00000000000
--- a/man/Makefile-client.am
+++ /dev/null
@@ -1,37 +0,0 @@
-dist_man_MANS += \
- ceph-syn.8 \
- ceph-conf.8 \
- ceph.8 \
- ceph-authtool.8 \
- rados.8 \
- rbd.8 \
- ceph-post-file.8 \
- ceph-dencoder.8
-
-if WITH_RADOS
-dist_man_MANS += \
- librados-config.8
-endif
-
-if WITH_RBD
-dist_man_MANS += \
- ceph-rbdnamer.8 \
- rbd-mirror.8 \
- rbd-nbd.8 \
- rbd-replay.8 \
- rbd-replay-many.8 \
- rbd-replay-prep.8 \
- rbdmap.8
-endif
-
-if WITH_FUSE
-dist_man_MANS += \
- rbd-fuse.8 \
- ceph-fuse.8
-endif
-
-if WITH_RADOSGW
-dist_man_MANS += \
- radosgw.8 \
- radosgw-admin.8
-endif
diff --git a/man/Makefile-server.am b/man/Makefile-server.am
deleted file mode 100644
index 6387346e060..00000000000
--- a/man/Makefile-server.am
+++ /dev/null
@@ -1,33 +0,0 @@
-dist_man_MANS += \
- ceph-deploy.8 \
- crushtool.8 \
- ceph-run.8 \
- mount.ceph.8 \
- ceph-create-keys.8 \
- ceph-rest-api.8 \
- ceph-debugpack.8
-
-if WITH_SELINUX
-dist_man_MANS += \
- ceph_selinux.8
-endif
-
-if WITH_MON
-dist_man_MANS += \
- ceph-mon.8 \
- monmaptool.8
-endif
-
-if WITH_OSD
-dist_man_MANS += \
- ceph-clsinfo.8 \
- ceph-detect-init.8 \
- ceph-disk.8 \
- ceph-osd.8 \
- osdmaptool.8
-endif
-
-if WITH_MDS
-dist_man_MANS += \
- ceph-mds.8
-endif
diff --git a/man/Makefile.am b/man/Makefile.am
deleted file mode 100644
index 6a8ffea2e93..00000000000
--- a/man/Makefile.am
+++ /dev/null
@@ -1,31 +0,0 @@
-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 -t 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