#!/usr/bin/make -f

export DH_VERBOSE=1

override_dh_auto_configure:
	dh_auto_configure -- \
		--enable-allplugins

override_dh_auto_install:
	dh_auto_install --max-parallel=1

override_dh_auto_test:
	dh_auto_test --max-parallel=1

override_dh_auto_build-indep:
	dh_auto_build
	doxygen
	rm -f html/jquery.js

override_dh_install:
	dh_install
	find $(CURDIR)/debian/fastjet-doc/ -name '*.md5' -delete

%:
	dh $@ --with autoreconf --parallel
