#!/usr/bin/make -f

DEB_HOST_ARCH=$(shell dpkg-architecture -qDEB_HOST_ARCH)
DEB_HOST_MULTIARCH=$(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
export DEBIAN_PACKAGE=1
export DPKG_EXPORT_BUILDFLAGS=1
include /usr/share/dpkg/buildflags.mk

ifndef prefix
prefix=/usr
endif

ifdef DEB_HOST_MULTIARCH
export LIBDIR=$(prefix)/lib/$(DEB_HOST_MULTIARCH)
else
export LIBDIR=$(prefix)/lib
endif

%:
	dh $@

override_dh_strip:
