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

%:
	dh $@ 
	
# dh_make generated override targets
# This is example for Cmake (See https://bugs.debian.org/641051 )
override_dh_auto_configure:
	cd binaries; \
	cmake ..

override_dh_auto_build:
	cd binaries; \
	cmake --build . --config Release;
	

override_dh_auto_install:
	cmake -DCMAKE_INSTALL_PREFIX=debian/wla-dx/usr -P binaries/cmake_install.cmake	

