2009-06-16 08:03:49 +00:00
|
|
|
#!/usr/bin/make -f
|
2009-09-29 13:10:17 +00:00
|
|
|
# -*- makefile -*-
|
|
|
|
# Sample debian/rules that uses debhelper.
|
|
|
|
# This file was originally written by Joey Hess and Craig Small.
|
|
|
|
# As a special exception, when this file is copied by dh-make into a
|
|
|
|
# dh-make output file, you may use that output file without restriction.
|
|
|
|
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
2009-06-16 08:03:49 +00:00
|
|
|
|
2009-09-29 13:10:17 +00:00
|
|
|
# Uncomment this to turn on verbose mode.
|
|
|
|
#export DH_VERBOSE=1
|
|
|
|
|
2013-02-01 20:32:31 +01:00
|
|
|
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
|
|
|
|
|
2011-05-20 14:40:36 +00:00
|
|
|
# "nocheck" option prevents from running tests (which need dedicated hardware)
|
|
|
|
export DEB_BUILD_OPTIONS=nocheck
|
2009-09-29 13:10:17 +00:00
|
|
|
|
2013-01-21 13:15:06 +09:00
|
|
|
# --enable-debug --with-drivers=all
|
|
|
|
confflags := --disable-silent-rules \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) \
|
|
|
|
$(NULL)
|
|
|
|
confflags += $(shell dpkg-buildflags --export=configure)
|
|
|
|
|
2011-05-20 14:40:36 +00:00
|
|
|
override_dh_installchangelogs:
|
2009-09-29 13:10:17 +00:00
|
|
|
dh_installchangelogs ChangeLog
|
|
|
|
|
2013-01-21 13:05:54 +09:00
|
|
|
override_dh_auto_configure:
|
2013-01-21 13:15:06 +09:00
|
|
|
dh_auto_configure -- $(confflags)
|
2011-05-20 14:40:36 +00:00
|
|
|
|
|
|
|
%:
|
2013-01-21 15:45:03 +09:00
|
|
|
dh $@ --with autoreconf
|
2013-02-01 09:01:29 +09:00
|
|
|
|
|
|
|
override_dh_strip:
|
|
|
|
dh_strip -plibnfc4 --dbg-package=libnfc4-dbg
|
|
|
|
dh_strip --remaining-packages
|