diff options
Diffstat (limited to 'roms/u-boot/scripts/Makefile')
-rw-r--r-- | roms/u-boot/scripts/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/roms/u-boot/scripts/Makefile b/roms/u-boot/scripts/Makefile new file mode 100644 index 000000000..e7b353f77 --- /dev/null +++ b/roms/u-boot/scripts/Makefile @@ -0,0 +1,13 @@ +# SPDX-License-Identifier: GPL-2.0 +### +# scripts contains sources for various helper programs used throughout +# the kernel for the build process. +# --------------------------------------------------------------------------- + +hostprogs-$(CONFIG_BUILD_BIN2C) += bin2c + +always := $(hostprogs-y) + +# Let clean descend into subdirs +subdir- += basic kconfig +subdir-$(CONFIG_DTC) += dtc |