#!/usr/bin/make -f
CONFIGURE_OPTIONS := CIMSERVER=sfcb --prefix=/usr
DESTDIR=$(CURDIR)/debian/tmp

%:
	dh $@ --with autoreconf

override_dh_auto_configure:
	dh_auto_configure -- $(CONFIGURE_OPTIONS)

override_dh_auto_install:
	dh_auto_install
	# Empty dependency_libs
	sed -i "/dependency_libs/ s/'.*'/''/" $(DESTDIR)/usr/lib/libopendrim.la
