#!/usr/bin/make -f
# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
DH_VERBOSE = 1

# main packaging script based on dh7 syntax
%:
	dh $@ 

# debmake generated override targets
# This is example for Cmake (See http://bugs.debian.org/641051 )
override_dh_auto_configure:
	

override_dh_auto_install:
	

override_dh_install:
	dh_install -- 
	cp debian/cursor.theme debian/monza-cursor-theme/usr/share/icons/Monza/index.theme
#	-DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH)




