# When KBUILD_VERBOSE is undefined (presumably you are directly working with # the debianized tree), show verbose logs unless DEB_BUILD_OPTION=terse is set.
ifeq ($(origin KBUILD_VERBOSE),undefined)
ifeq (,$(filter terse,$(DEB_BUILD_OPTIONS)))
export KBUILD_VERBOSE := 1 else
Q := @
endif
endif
# DH_OPTION is an environment variable common for all debhelper commands. # We could 'export' it, but here it is passed from the command line to clarify # which package is being processed in the build log.
DH_OPTIONS = -p$(package)
# Note: future removal of KDEB_COMPRESS # dpkg-deb >= 1.21.10 supports the DPKG_DEB_COMPRESSOR_TYPE environment # variable, which provides the same functionality as KDEB_COMPRESS. The # KDEB_COMPRESS variable will be removed in the future.
define binary
$(Q)dh_testdir $(DH_OPTIONS)
$(Q)dh_testroot $(DH_OPTIONS)
$(Q)dh_prep $(DH_OPTIONS)
$(Q)+$(MAKE) $(make-opts) run-command KBUILD_RUN_COMMAND='+$$(srctree)/scripts/package/builddeb $(package)'
$(Q)dh_installdocs $(DH_OPTIONS)
$(Q)dh_installchangelogs $(DH_OPTIONS)
$(Q)dh_compress $(DH_OPTIONS)
$(Q)dh_fixperms $(DH_OPTIONS)
$(Q)dh_gencontrol $(DH_OPTIONS) -- -f$(call mk-files,$@)
$(Q)dh_md5sums $(DH_OPTIONS)
$(Q)dh_builddeb $(DH_OPTIONS) -- $(addprefix -Z,$(KDEB_COMPRESS))
endef
# If DEB_HOST_ARCH is empty, it is likely that debian/rules was executed # directly. Run 'dpkg-architecture --print-set --print-format=make' to # generate a makefile construct that exports all DEB_* variables. ifndef DEB_HOST_ARCH include debian/deb-env.vars