]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
build/ops: build mount.ceph and mount.fuse.ceph as client binaries 10147/head
authorNathan Cutler <ncutler@suse.com>
Mon, 18 Jul 2016 17:09:54 +0000 (19:09 +0200)
committerNathan Cutler <ncutler@suse.com>
Mon, 18 Jul 2016 17:21:37 +0000 (19:21 +0200)
Signed-off-by: Nathan Cutler <ncutler@suse.com>
src/Makefile-client.am
src/Makefile-server.am

index 98e8ebb74d299ed214053be6dd100b37683bd8f8..07d11b543935a1f5783f51b8e542a09f92e8c4ac 100644 (file)
@@ -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)
index f75017a524e9fefa0296c4cb59f8917ecbd120c5..fecae94b35e627b967444df0793d1fea8b386b1e 100644 (file)
@@ -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