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

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

override_dh_auto_clean:
	dh_clean
	rm -rf $(CURDIR)/build/ $(CURDIR)/obj-*
	rm -f $(CURDIR)/lifeograph.desktop

override_dh_install:
	dh_install
	install -m0755 -d $(CURDIR)/debian/lifeograph/usr/share/applications/
	install -m0644 $(CURDIR)/build/lifeograph.desktop \
		$(CURDIR)/debian/lifeograph/usr/share/applications/

%:
	dh $@ --parallel

.PHONY: override_dh_auto_clean override_dh_install
