#!/usr/bin/make -f

SHELL := /bin/bash

override_dh_autoreconf:
	dh_autoreconf

override_dh_auto_configure:
	dh_auto_configure -- \
		--disable-shared \
		--disable-static

override_dh_auto_install:
	dh_auto_install --destdir=debian/tmp

override_dh_auto_test:

override_dh_auto_clean:

%:
	dh $@ --buildsystem=autoconf
