#!/usr/bin/make -f

# Set CFLAGS to DEB_CFLAGS
CFLAGS=$(DEB_CFLAGS)

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

override_dh_build_arch:
	dh_build_arch
	make -C examples

override_dh_clean:
	dh_clean examples/Makefile tests/Makefile
