#!/usr/bin/make -f configure: configure-stamp configure-stamp: dh_testdir qmake-qt4 touch configure-stamp build: build-stamp build-stamp: configure-stamp dh_testdir $(MAKE) $(MAKE) doc touch $@ clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp if test -f $(CURDIR)/Makefile ; then \ $(MAKE) distclean; \ fi dh_clean install: dh_testdir dh_testroot dh_clean -k dh_installdirs INSTALL_ROOT=$(CURDIR)/debian/tmp $(MAKE) install binary-indep: build install binary-arch: install dh_testdir dh_testroot if [ -e $(CURDIR)/debian/tmp/usr/share/applications/mdictionary.desktop ] ; then \ sed -i -e 's/.*mdictionary.desktop/usr\/share\/applications\/mdictionary.desktop/g' $(CURDIR)/debian/mdictionary.install ;\ else \ sed -i -e 's/.*mdictionary.desktop/usr\/share\/applications\/hildon\/mdictionary.desktop/g' $(CURDIR)/debian/mdictionary.install ;\ fi dh_install --sourcedir=$(CURDIR)/debian/tmp dh_installdocs dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb # dh_maemo_package_icons -r binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure