- Modules are not a feature of the Zephyr kernel. - genksyms removed, not used by zephyr - bin2c remove, not used in zephyr Change-Id: Ic8f0e786530dcf410b07d6c5cc47f1087000d528 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
22 lines
663 B
Makefile
22 lines
663 B
Makefile
###
|
|
# scripts contains sources for various helper programs used throughout
|
|
# the kernel for the build process.
|
|
# ---------------------------------------------------------------------------
|
|
# docproc: Used in Documentation/DocBook
|
|
|
|
HOST_EXTRACFLAGS += -I$(srctree)/tools/include
|
|
|
|
always := $(hostprogs-y) $(hostprogs-m)
|
|
|
|
# The following hostprogs-y programs are only build on demand
|
|
hostprogs-y += unifdef docproc
|
|
|
|
# These targets are used internally to avoid "is up to date" messages
|
|
PHONY += build_unifdef build_docproc
|
|
build_unifdef: $(obj)/unifdef
|
|
@:
|
|
build_docproc: $(obj)/docproc
|
|
@:
|
|
|
|
# Let clean descend into subdirs
|
|
subdir- += basic kconfig gen_idt
|