2008-01-28 23:33:37 +00:00
|
|
|
#!/usr/bin/make -f
|
2009-05-11 18:01:50 +00:00
|
|
|
# -*- makefile -*-
|
2008-07-24 17:14:08 +00:00
|
|
|
export DH_VERBOSE=1
|
2010-11-30 17:13:54 +00:00
|
|
|
export DESTDIR=$(CURDIR)/debian/tmp
|
|
|
|
|
2011-03-19 19:15:17 +00:00
|
|
|
ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
|
|
|
|
NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
|
|
|
|
MAKEFLAGS += -j$(NUMJOBS)
|
|
|
|
endif
|
|
|
|
|
2011-03-19 19:36:10 +00:00
|
|
|
export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
|
|
|
|
export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
|
|
|
|
|
|
|
|
# Recommended snippet for Autoconf 2.52 or later
|
|
|
|
ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
|
|
|
|
confflags += --build $(DEB_HOST_GNU_TYPE)
|
|
|
|
else
|
|
|
|
confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
|
|
|
|
endif
|
|
|
|
|
2011-03-20 07:23:22 +00:00
|
|
|
export DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
|
|
|
|
|
2012-06-16 20:39:56 +00:00
|
|
|
extraopts += --with-ocf --with-rest-bench --with-nss
|
2012-09-01 17:26:41 +00:00
|
|
|
extraopts += --enable-cephfs-java
|
2012-01-05 21:33:31 +00:00
|
|
|
|
2011-03-20 07:23:22 +00:00
|
|
|
ifeq ($(DEB_HOST_ARCH), armel)
|
|
|
|
# armel supports ARMv4t or above instructions sets.
|
|
|
|
# libatomic-ops is only usable with Ceph for ARMv6 or above.
|
|
|
|
extraopts += --without-libatomic-ops
|
|
|
|
endif
|
|
|
|
|
2011-04-19 18:04:01 +00:00
|
|
|
ifneq ($(DEB_HOST_ARCH), i386)
|
|
|
|
ifneq ($(DEB_HOST_ARCH), amd64)
|
|
|
|
# libgoogle-perftools-dev is only available on i386 and amd64
|
|
|
|
extraopts += --without-tcmalloc
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2011-04-19 18:20:24 +00:00
|
|
|
ifeq ($(shell grep -c -E '^Build-Depends:(.*,)?[[:space:]]*libgoogle-perftools-dev([[:space:]]|,|$$)' debian/control),0)
|
|
|
|
# if Build-Deps have been edited to skip libgoogle-perftools-dev (as
|
|
|
|
# we do for Debian lenny), tell configure it's ok to not have
|
|
|
|
# tcmalloc.
|
|
|
|
extraopts += --without-tcmalloc
|
|
|
|
endif
|
|
|
|
|
2009-05-11 18:01:50 +00:00
|
|
|
configure: configure-stamp
|
|
|
|
configure-stamp:
|
|
|
|
dh_testdir
|
2012-06-11 22:48:50 +00:00
|
|
|
./autogen.sh
|
|
|
|
./configure --prefix=/usr --sbindir=/sbin --localstatedir=/var \
|
|
|
|
--sysconfdir=/etc $(extraopts) $(confflags)
|
2010-12-06 05:27:23 +00:00
|
|
|
touch $@
|
2010-11-30 17:13:54 +00:00
|
|
|
|
2012-02-27 04:45:52 +00:00
|
|
|
build-arch: build
|
|
|
|
build-indep: build
|
|
|
|
|
2009-05-11 18:01:50 +00:00
|
|
|
build: build-stamp
|
|
|
|
build-stamp: configure-stamp
|
|
|
|
dh_testdir
|
|
|
|
|
|
|
|
$(MAKE)
|
2012-02-27 04:45:52 +00:00
|
|
|
|
2010-02-11 18:36:38 +00:00
|
|
|
cp src/init-ceph debian/ceph.init
|
2011-09-26 18:04:25 +00:00
|
|
|
cp src/init-radosgw debian/radosgw.init
|
2010-08-02 16:15:34 +00:00
|
|
|
cp src/logrotate.conf debian/ceph.logrotate
|
2009-05-11 18:01:50 +00:00
|
|
|
|
|
|
|
touch $@
|
2010-11-30 17:13:54 +00:00
|
|
|
|
|
|
|
clean:
|
2009-05-11 18:01:50 +00:00
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
rm -f build-stamp configure-stamp
|
|
|
|
|
2010-12-06 05:27:23 +00:00
|
|
|
[ ! -f Makefile ] || $(MAKE) distclean
|
|
|
|
rm -f aclocal.m4 compile config.sub config.guess depcomp install-sh \
|
|
|
|
ltmain.sh missing
|
|
|
|
rm -f configure Makefile.in man/Makefile.in src/Makefile.in
|
|
|
|
rm -f src/acconfig.h.in
|
2011-09-26 18:04:25 +00:00
|
|
|
rm -f debian/ceph.init debian/radosgw.init debian/ceph.logrotate
|
2010-11-30 17:13:54 +00:00
|
|
|
|
|
|
|
dh_clean
|
2009-05-11 18:01:50 +00:00
|
|
|
|
|
|
|
install: build
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
dh_clean -k
|
|
|
|
dh_installdirs
|
|
|
|
|
2010-11-30 17:13:54 +00:00
|
|
|
$(MAKE) DESTDIR=$(DESTDIR) install
|
2011-11-01 19:57:11 +00:00
|
|
|
sed -i "/dependency_libs/ s/'.*'/''/" `find . -name '*.la'`
|
2011-03-11 17:43:14 +00:00
|
|
|
install -D -m 644 udev/50-rbd.rules $(DESTDIR)/lib/udev/rules.d/50-rbd.rules
|
2008-01-28 23:33:37 +00:00
|
|
|
|
2009-05-11 18:01:50 +00:00
|
|
|
# Add here commands to install the package into debian/testpack.
|
|
|
|
# Build architecture-independent files here.
|
|
|
|
binary-indep: build install
|
2012-10-10 20:57:03 +00:00
|
|
|
jh_installlibs -v -i
|
2010-11-30 17:13:54 +00:00
|
|
|
|
2009-05-11 18:01:50 +00:00
|
|
|
# We have nothing to do by default.
|
|
|
|
# Build architecture-dependent files here.
|
|
|
|
binary-arch: build install
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
dh_installchangelogs
|
2010-11-30 17:13:54 +00:00
|
|
|
dh_installdocs --all ChangeLog
|
2009-05-11 18:01:50 +00:00
|
|
|
dh_installexamples
|
2010-11-30 17:13:54 +00:00
|
|
|
dh_install --sourcedir=$(DESTDIR) --list-missing
|
2010-07-01 20:59:25 +00:00
|
|
|
dh_installlogrotate
|
2011-11-16 19:41:15 +00:00
|
|
|
dh_installinit --no-start
|
2012-05-07 19:12:48 +00:00
|
|
|
# dh_installinit is only set up to handle one upstart script
|
|
|
|
# per package, so do this ourselves
|
|
|
|
install -d -m0755 debian/ceph/etc/init
|
2012-06-12 20:40:43 +00:00
|
|
|
install -m0644 src/upstart/ceph*.conf debian/ceph/etc/init
|
|
|
|
install -d -m0755 debian/radosgw/etc/init
|
|
|
|
install -m0644 src/upstart/radosgw*.conf debian/radosgw/etc/init
|
2009-05-11 18:01:50 +00:00
|
|
|
dh_installman
|
2010-07-09 22:26:03 +00:00
|
|
|
dh_lintian
|
2009-05-11 18:01:50 +00:00
|
|
|
dh_link
|
2009-10-28 20:16:34 +00:00
|
|
|
|
2010-12-17 16:31:00 +00:00
|
|
|
dh_strip -pceph --dbg-package=ceph-dbg -k --exclude=libcls_
|
2012-07-03 16:20:35 +00:00
|
|
|
dh_strip -pceph-mds --dbg-package=ceph-mds-dbg
|
2010-11-30 17:13:54 +00:00
|
|
|
dh_strip -pceph-fuse --dbg-package=ceph-fuse-dbg
|
2011-09-27 17:02:47 +00:00
|
|
|
dh_strip -pceph-common --dbg-package=ceph-common-dbg
|
2012-06-18 16:20:40 +00:00
|
|
|
dh_strip -pceph-fs-common --dbg-package=ceph-fs-common-dbg
|
2011-03-05 21:29:20 +00:00
|
|
|
dh_strip -plibrados2 --dbg-package=librados2-dbg
|
2011-02-02 01:09:08 +00:00
|
|
|
dh_strip -plibrbd1 --dbg-package=librbd1-dbg
|
2011-09-22 22:07:19 +00:00
|
|
|
dh_strip -plibcephfs1 --dbg-package=libcephfs1-dbg
|
2010-11-30 17:13:54 +00:00
|
|
|
dh_strip -pradosgw --dbg-package=radosgw-dbg
|
2012-05-01 17:06:19 +00:00
|
|
|
dh_strip -prest-bench --dbg-package=rest-bench-dbg
|
2009-10-28 20:16:34 +00:00
|
|
|
|
2009-05-11 18:01:50 +00:00
|
|
|
dh_compress
|
|
|
|
dh_fixperms
|
2012-09-12 09:40:01 +00:00
|
|
|
dh_makeshlibs -X/usr/lib/rados-classes # exclude .so files in ceph package
|
2012-04-11 20:35:26 +00:00
|
|
|
dh_python2
|
2009-05-11 18:01:50 +00:00
|
|
|
dh_installdeb
|
|
|
|
dh_shlibdeps
|
|
|
|
dh_gencontrol
|
|
|
|
dh_md5sums
|
|
|
|
dh_builddeb
|
2010-11-30 17:13:54 +00:00
|
|
|
|
2009-05-11 18:01:50 +00:00
|
|
|
binary: binary-indep binary-arch
|
|
|
|
.PHONY: build clean binary-indep binary-arch binary install configure
|