#!/usr/bin/make -f
# debian/rules for the Debian libxkbfile package.

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

%:
	dh $@ --builddirectory=build/

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

override_dh_missing:
	dh_missing --fail-missing

override_dh_makeshlibs:
	dh_makeshlibs --add-udeb=$(PACKAGE)-udeb
