2009-06-16 10:03:49 +02:00
|
|
|
#!/usr/bin/make -f
|
2009-09-29 15:10:17 +02: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 10:03:49 +02:00
|
|
|
|
2009-09-29 15:10:17 +02:00
|
|
|
# Uncomment this to turn on verbose mode.
|
|
|
|
#export DH_VERBOSE=1
|
|
|
|
|
2011-05-20 16:40:36 +02:00
|
|
|
# "nocheck" option prevents from running tests (which need dedicated hardware)
|
|
|
|
export DEB_BUILD_OPTIONS=nocheck
|
2009-09-29 15:10:17 +02:00
|
|
|
|
2013-01-21 05:15:06 +01: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 16:40:36 +02:00
|
|
|
override_dh_installchangelogs:
|
2009-09-29 15:10:17 +02:00
|
|
|
dh_installchangelogs ChangeLog
|
|
|
|
|
2013-01-21 05:05:54 +01:00
|
|
|
override_dh_auto_configure:
|
2013-01-21 05:15:06 +01:00
|
|
|
dh_auto_configure -- $(confflags)
|
2011-05-20 16:40:36 +02:00
|
|
|
|
|
|
|
%:
|
2013-01-21 07:45:03 +01:00
|
|
|
dh $@ --with autoreconf
|
2013-02-01 01:01:29 +01:00
|
|
|
|
|
|
|
override_dh_strip:
|
|
|
|
dh_strip -plibnfc4 --dbg-package=libnfc4-dbg
|
|
|
|
dh_strip --remaining-packages
|