#!/usr/bin/make -f

DIST=$(shell lsb_release -i -s)

ifeq "$(DIST)" "Ubuntu"
	DEB_DH_BUILDDEB_ARGS := -- -Zlzma
else
	DEB_DH_BUILDDEB_ARGS := -- -Zbzip2
endif

%:
	dh $@
