#!/usr/bin/make -f
# Sample debian/rules that uses debhelper.
# GNU copyright 1997 to 1999 by Joey Hess.

%:
	dh --with autotools_dev $@

override_dh_auto_configure:
	autoreconf -vfi
	dh_auto_configure

clean:
	rm -f build
	dh --with autotools_dev clean

build:
	dh --with autotools_dev build
	touch build # Suggested by policy 3.8.4 section 4.9
