#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
# export DH_VERBOSE=1

# This has to be exported to make some magic below work.
export DH_OPTIONS

.PHONY: override_dh_strip

%:
	dh $@

override_dh_auto_build:
	make -j8 build

override_dh_shlibdeps:
	dh_shlibdeps -Xftoi -Xitof --dpkg-shlibdeps-params=--ignore-missing-info -l$(shell pwd)/debian/tmp/usr/lib

override_dh_installsystemd:
	dh_installsystemd --name=barco-edu-proxy

override_dh_auto_test:
	echo No Tests
