#!/usr/bin/make -f
%:
	dh $@

binary: binary-arch binary-indep
binary-arch:
binary-indep:
	dh binary-indep --until dh_prep
	-dh_clideps
	-dh_gtkmodules
	dh_lisp || true
# We don't warn about commands inside make conditionals, so none of these
# get any warnings.
ifeq "$(USE_PYCENTRAL)" "y"
	dh_pycentral
else
  ifeq "$(USE_PYSUPPORT)" "y"
	dh_pysupport
  endif
endif
	dh binary-indep --remaining
