#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

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

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

override_dh_auto_install:
	dh_auto_install --destdir=debian/tmp
	mv $(CURDIR)/debian/tmp/usr/share/help/C/examples/example-tmdb.c \
	   $(CURDIR)/debian/tmp/usr/share/help/C/examples/tmdb-example.c

override_dh_auto_test:

override_dh_makeshlibs:
