#!/usr/bin/make -f

DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/default.mk

%:
	dh $@  --with autoreconf

override_dh_auto_clean:
	rm -rf gflags
	rm -rf glog
	rm -rf third_party/protobuf
	dh_auto_clean

override_dh_auto_configure:
	dh_auto_configure -- --with-llvm=/usr/bin/llvm-config-13
