#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_build:
	autoreconf -i
	./configure --prefix /usr \
		    --with-systemd \
		    --with-systemdsystemunitdir=/lib/systemd/system
	$(MAKE)

override_dh_clean:
	rm -f aclocal.m4
	dh_clean
