#!/usr/bin/make -f

export CC=gcc-4.8
export CXX=g++-4.8

%:
	dh $@

# .cfdg example files should not be compressed
override_dh_compress:
	dh_compress -X.cfdg

# "make test" fails (there is no explicit "test" target in the Makefile, but it
# is matched by one of the rules), so override dh_auto_test to not run
override_dh_auto_test:
