#!/usr/bin/make -f

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

%:
	dh $@ --buildsystem=pybuild

override_dh_auto_build:
	dh_auto_build
	if [ -d debian/msg ] ; then cd debian/msg; make ; fi

override_dh_clean:
	if [ -d debian/msg ] ; then cd debian/msg; make clean; fi
	dh_clean

override_dh_install:
	dh_install
	if [ -d debian/msg ] ; then cd debian/msg; make install DESTDIR=../cycle/usr/share/locale/ ; fi
