]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
man: move ENABLE_* to Makefile.am
authorBoris Ranto <branto@redhat.com>
Thu, 5 Mar 2015 18:35:02 +0000 (19:35 +0100)
committerBoris Ranto <branto@redhat.com>
Thu, 5 Mar 2015 18:57:08 +0000 (19:57 +0100)
man/Makefile-client.am
man/Makefile-server.am
man/Makefile.am

index ebf6e92d03f82e0941e99faebe4d9515996470f9..14200f5a8ce227e67a94ede58df3176dbdeaf605 100644 (file)
@@ -1,5 +1,3 @@
-if ENABLE_CLIENT
-
 dist_man_MANS += \
        ceph-syn.8 \
        ceph-conf.8 \
@@ -39,5 +37,3 @@ dist_man_MANS += \
        radosgw.8 \
        radosgw-admin.8
 endif
-
-endif # ENABLE_CLIENT
index 13945882431f15e66bffe05fb01183bba84412e7..794275b543172fb9240215ee8c9f56a38237d128 100644 (file)
@@ -1,5 +1,3 @@
-if ENABLE_SERVER
-
 dist_man_MANS += \
        ceph-deploy.8 \
        crushtool.8 \
@@ -26,5 +24,3 @@ if WITH_MDS
 dist_man_MANS += \
        ceph-mds.8
 endif
-
-endif # ENABLE_SERVER
index 2c2a5c3a38feca2653ad826b993d7bf1fcca6ec0..64f07cc86451dbcdd588aa6b800c55a0686502cd 100644 (file)
@@ -2,5 +2,10 @@ AUTOMAKE_OPTIONS = gnu
 
 dist_man_MANS = 
 
-include arch/Makefile-client.am
-include auth/Makefile-server.am
+if ENABLE_CLIENT
+include Makefile-client.am
+endif
+
+if ENABLE_SERVER
+include Makefile-server.am
+endif