#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1

%:
	dh $@ --with autotools_dev

override_dh_auto_install:
	# The following will run: perl Build install
	dh_auto_install
	# But we also need this to get the correct script
	DESTDIR=$(CURDIR)/debian/tmp make install

override_dh_compress:
	dh_compress -Xexample.Q
