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

export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed

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

export DH_ALWAYS_EXCLUDE=jquery.js

.PHONY: override_dh_strip override_dh_shlibdeps 

%:
	dh $@ --parallel

override_dh_auto_configure:
	dh_auto_configure -- -DALWAYS_CREATE_DOC=ON  -DSTRICT_DEPENDECIES=ON

override_dh_builddeb:
	dh_builddeb -- -Z xz

# dh_strip detects executable files, so make *.mia files executable then strip then 
# remove the executable flag 
override_dh_strip:
	 `pwd`/debian/run_strip

override_dh_shlibdeps:
	dh_shlibdeps -- $(shell find  debian/libmia-2.0-8/ -name "*.mia")

