#!/usr/bin/make -f

export CC=/usr/bin/gcc-8
export CXX = /usr/bin/g++-8

# Force debhelper to catch errors and use the standard sequence
%:
	dh $@

# Override the configure step to force the /usr prefix
override_dh_auto_configure:
	./configure --prefix=/usr

# Prevent dh from automatically running intensive Node test suites during build
override_dh_auto_test:
	@echo "Skipping upstream tests..."

