#!/usr/bin/make -f

# set this to the name of the main shlib's binary package
PACKAGE = libfs6

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- \
		--disable-silent-rules

override_dh_install:
	find debian/tmp -name '*.la' -delete
	dh_install

override_dh_missing:
	dh_missing --fail-missing

override_dh_strip:
	dh_strip --dbgsym-migration='libfs6-dbg (<< 1.0.7-2~)'
