#!/usr/bin/make -f
# -*- mode: makefile; coding: utf-8 -*-

# Define install target dir
INSTALLDIR = $(CURDIR)/debian/tmp

%:
	dh $@

override_dh_auto_build:
	$(MAKE) all WIDGET=gtk2


override_dh_auto_install:
	dh_auto_install --destdir=$(INSTALLDIR)

override_dh_auto_clean:
	dh_auto_clean
	rm -f *.res
