man: move ENABLE_* to Makefile.am

This commit is contained in:
Boris Ranto 2015-03-05 19:35:02 +01:00
parent e531dd4b37
commit 5cbe5ca6d3
3 changed files with 7 additions and 10 deletions

View 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

View 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

View 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