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
|
|
|
|
|
2009-05-11 18:01:50 +00:00
|
|
|
configure: configure-stamp
|
|
|
|
configure-stamp:
|
|
|
|
dh_testdir
|
2010-12-06 05:27:23 +00:00
|
|
|
touch $@
|
2010-11-30 17:13:54 +00:00
|
|
|
|
2009-05-11 18:01:50 +00:00
|
|
|
build: build-stamp
|
|
|
|
build-stamp: configure-stamp
|
|
|
|
dh_testdir
|
|
|
|
|
|
|
|
./autogen.sh
|
2010-12-03 01:31:45 +00:00
|
|
|
./configure --prefix=/usr --sbindir=/sbin --localstatedir=/var --sysconfdir=/etc
|
2009-05-11 18:01:50 +00:00
|
|
|
$(MAKE)
|
2010-02-11 18:36:38 +00:00
|
|
|
cp src/init-ceph debian/ceph.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
|
|
|
|
rm -f debian/ceph.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-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
|
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
|
2009-05-11 18:01:50 +00:00
|
|
|
dh_installinit
|
|
|
|
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_
|
2010-11-30 17:13:54 +00:00
|
|
|
dh_strip -pceph-fuse --dbg-package=ceph-fuse-dbg
|
|
|
|
dh_strip -pceph-client-tools --dbg-package=ceph-client-tools-dbg
|
|
|
|
dh_strip -plibcrush1 --dbg-package=libcrush1-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
|
2010-11-30 17:13:54 +00:00
|
|
|
dh_strip -plibceph1 --dbg-package=libceph1-dbg
|
|
|
|
dh_strip -pradosgw --dbg-package=radosgw-dbg
|
2009-10-28 20:16:34 +00:00
|
|
|
|
2009-05-11 18:01:50 +00:00
|
|
|
dh_compress
|
|
|
|
dh_fixperms
|
2010-07-07 23:43:44 +00:00
|
|
|
dh_makeshlibs -n # we do the postinst/postrm scripts manually
|
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
|