#!/usr/bin/make -f

DH_VERBOSE = 1

%:
	dh $@

override_dh_auto_configure:
	./autogen.sh
	./configure --with-proto --without-internal-rpc --without-cli --without-bmv2 --without-sysrepo --prefix=/usr/ --disable-dependency-tracking

override_dh_auto_build:
	make all

override_dh_auto_install:
	dh_auto_install -- DESTDIR=$(CURDIR)/ install

