#!/usr/bin/make -f
export DH_VERBOSE = 1
export DEB_BUILD_OPTIONS += noautodbgsym nocheck

%:
	dh $@

override_dh_auto_clean:
	rm -Rf build dist
	dh_auto_clean

override_dh_auto_configure:

override_dh_auto_build:
	$(MAKE) -j$(shell nproc --ignore=1) \
		TARGET_PLATFORM="${DEB_TARGET_GNU_CPU}-gpp" \
		INSTRUCTION_SET="sse2" \
		VERSION_STR="v4.1.1" \
		VERSION_INT="411" \
		CXX_WARNINGS=

override_dh_auto_install:
