#!/usr/bin/make -f

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

export DEB_LDFLAGS_MAINT_APPEND=-Wl,--as-needed

# Enable verbose build output
export V=1

%:
	dh $@ --parallel --with autoreconf

override_dh_autoreconf:
	dh_autoreconf --as-needed

# Build debug packages.
override_dh_strip:
	dh_strip -plibgmtk0 --dbg-package=libgmtk0-dbg
	dh_strip -plibgmlib0 --dbg-package=libgmlib0-dbg

