diff options
author | Alfredo Deza <alfredo@deza.pe> | 2013-09-24 14:00:14 -0400 |
---|---|---|
committer | Gary Lowell <gary.lowell@inktank.com> | 2013-10-09 10:04:50 -0700 |
commit | 2d87ea227392485f90e83f26aa8d2536d7f0b035 (patch) | |
tree | c2544c68090ea026f58a465fe5db6f558ab5f2e4 | |
parent | 48d99d1901e3ec50eda833baf818cff56754fd65 (diff) | |
download | ceph-2d87ea227392485f90e83f26aa8d2536d7f0b035.tar.gz |
add the targets to the makefile.am
Signed-off-by: Alfredo Deza <alfredo.deza@inktank.com>
-rw-r--r-- | src/Makefile.am | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 280b268479e..232a62b9dba 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -75,7 +75,7 @@ ceph_syn_SOURCES += client/SyntheticClient.cc # uses g_conf.. needs cleanup ceph_syn_LDADD = $(LIBCLIENT) $(CEPH_GLOBAL) bin_PROGRAMS += ceph-syn -rbd_SOURCES = rbd.cc +rbd_SOURCES = rbd.cc rbd_LDADD = $(LIBRBD) $(LIBRADOS) $(CEPH_GLOBAL) if LINUX bin_PROGRAMS += rbd @@ -395,3 +395,11 @@ project.tgz: clean coverity-submit: scp project.tgz ceph.com:/home/ceph_site/ceph.com/coverity/`git describe`.tgz curl --data "project=ceph&password=`cat ~/coverity.build.pass.txt`&email=sage@newdream.net&url=http://ceph.com/coverity/`git describe`.tgz" http://scan5.coverity.com/cgi-bin/submit_build.py + +# Install Python bindings into a virtualenv +install-pybind: + # bootstrap requires us to be in the same directory + @cd pybind && ./bootstrap + +uninstall-pybind: + rm -rf pybind/virtualenv |