#!/usr/bin/make -f

%:
	dh $@ --with autoreconf,bash-completion

override_dh_strip:
	dh_strip --dbg-package=liboggz2-dbg

ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),)
# Run our test suite until the upstream source get one
override_dh_auto_test:
	dh_auto_test
	for t in debian/tests/test-*; do \
	    BUILDDIR=`pwd` $$t; \
	done
endif
