1 # SPDX-License-Identifier: GPL-2.0 2 ### 3 # scripts contains sources for various helper programs used throughout 4 # the kernel for the build process. 5 # --------------------------------------------------------------------------- 6 # docproc: Used in Documentation/DocBook 7 8 hostprogs-$(CONFIG_BUILD_BIN2C) += bin2c 9 10 always := $(hostprogs-y) 11 12 # The following hostprogs-y programs are only build on demand 13 hostprogs-y += docproc 14 15 # These targets are used internally to avoid "is up to date" messages 16 PHONY += build_docproc 17 build_docproc: $(obj)/docproc 18 @: 19 20 # Let clean descend into subdirs 21 subdir- += basic kconfig 22 subdir-$(CONFIG_DTC) += dtc 23