#!/usr/bin/make -f

export DEB_BUILD_OPTIONS+=nocheck

TMP=$(CURDIR)/debian/tmp/

#Don't override any flags. k thanx bye
CFLAGS=
CPPFLAGS=
LDFLAGS=
CXXFLAGS=

%:
	dh $@

override_dh_auto_configure:
	autoreconf -f -i
	dh_auto_configure -- --disable-rpath

override_dh_strip:
	dh_strip --dbg-package=libhaildb-dbg

override_dh_installchangelogs:
	dh_installchangelogs ChangeLog

get-orig-source:
	uscan --verbose --force-download --rename --repack --destdir=..
