From: Nathan Cutler Date: Mon, 18 Jul 2016 17:09:54 +0000 (+0200) Subject: build/ops: build mount.ceph and mount.fuse.ceph as client binaries X-Git-Tag: ses5-milestone5~369^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F10147%2Fhead;p=ceph.git build/ops: build mount.ceph and mount.fuse.ceph as client binaries Signed-off-by: Nathan Cutler --- diff --git a/src/Makefile-client.am b/src/Makefile-client.am index 98e8ebb74d2..07d11b54393 100644 --- a/src/Makefile-client.am +++ b/src/Makefile-client.am @@ -62,6 +62,7 @@ if WITH_FUSE ceph_fuse_SOURCES = ceph_fuse.cc ceph_fuse_LDADD = $(LIBCLIENT_FUSE) $(CEPH_GLOBAL) bin_PROGRAMS += ceph-fuse +sbin_SCRIPTS += mount.fuse.ceph if WITH_RBD rbd_fuse_SOURCES = rbd_fuse/rbd-fuse.cc @@ -77,6 +78,12 @@ cephfs_SOURCES = cephfs.cc cephfs_LDADD = $(LIBCOMMON) bin_PROGRAMS += cephfs +mount_ceph_SOURCES = mount/mount.ceph.c +mount_ceph_LDADD = $(LIBSECRET) $(LIBCOMMON) +if LINUX +sbin_PROGRAMS += mount.ceph +endif # LINUX + python_PYTHON += pybind/ceph_volume_client.py # libcephfs (this should go somewhere else in the future) diff --git a/src/Makefile-server.am b/src/Makefile-server.am index f75017a524e..fecae94b35e 100644 --- a/src/Makefile-server.am +++ b/src/Makefile-server.am @@ -16,13 +16,6 @@ BUILT_SOURCES += init-ceph shell_scripts += init-ceph -mount_ceph_SOURCES = mount/mount.ceph.c -mount_ceph_LDADD = $(LIBSECRET) $(LIBCOMMON) -if LINUX -sbin_PROGRAMS += mount.ceph -endif # LINUX -sbin_SCRIPTS += mount.fuse.ceph - if WITH_MON