提交 4ca76945 编写于 作者: M Masahiro Yamada

kbuild: clean up subdir-ymn calculation in Makefile.clean

Remove some variables.
Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
上级 687ac1fa
...@@ -17,17 +17,8 @@ include $(if $(wildcard $(kbuild-dir)/Kbuild), $(kbuild-dir)/Kbuild, $(kbuild-di ...@@ -17,17 +17,8 @@ include $(if $(wildcard $(kbuild-dir)/Kbuild), $(kbuild-dir)/Kbuild, $(kbuild-di
# Figure out what we need to build from the various variables # Figure out what we need to build from the various variables
# ========================================================================== # ==========================================================================
__subdir-y := $(patsubst %/,%,$(filter %/, $(obj-y))) subdir-ymn := $(sort $(subdir-y) $(subdir-m) $(subdir-) \
subdir-y += $(__subdir-y) $(patsubst %/,%, $(filter %/, $(obj-y) $(obj-m) $(obj-))))
__subdir-m := $(patsubst %/,%,$(filter %/, $(obj-m)))
subdir-m += $(__subdir-m)
__subdir- := $(patsubst %/,%,$(filter %/, $(obj-)))
subdir- += $(__subdir-)
# Subdirectories we need to descend into
subdir-ym := $(sort $(subdir-y) $(subdir-m))
subdir-ymn := $(sort $(subdir-ym) $(subdir-))
# Add subdir path # Add subdir path
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册