#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_configure:
	# No configuration step is needed, but we need to create the build directory
	shellcheck files/usr/libexec/cuda_test_pkg_config
	mypy --check files/usr/libexec/cuda_test_compare_packaging
	black --check files/usr/libexec/cuda_test_compare_packaging

	mypy --check tests/test_cuda_test_compare_packaging.py
	black --check tests/test_cuda_test_compare_packaging.py
	
	dh_auto_configure
