#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_test:
	# don't run the tests if suppressed with DEB_BUILD_OPTIONS=nocheck
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
	export ASPLINE=$(CURDIR)/aspline ; cd debian/tests ; ./runtests
endif

.PHONY: override_dh_auto_test
