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

export LINKFLAGS := $(shell dpkg-buildflags --get LDFLAGS) -ldl

WAF = ./waf

%:
	dh $@ --parallel

override_dh_auto_configure:
	$(WAF) configure   --prefix=/usr

override_dh_auto_build:
	$(WAF)

override_dh_auto_clean:
	$(WAF) distclean
	find -name "*.pyc" -delete
	dh_auto_clean

override_dh_auto_install:
	$(WAF) install --destdir=$(CURDIR)/debian/tmp

override_dh_strip:
	dh_strip --dbg-package=showq-dbg
