Skip to content
Snippets Groups Projects
Commit 73c8b52b authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Tom Rini
Browse files

kbuild: a minor optimization of "make clobber"


The pattern rule "MLO*" can delete both MLO and MLO.byteswap.

Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
parent 5d0f0157
No related branches found
No related tags found
No related merge requests found
...@@ -1178,7 +1178,7 @@ CLEAN_FILES += u-boot.lds include/bmp_logo.h include/bmp_logo_data.h \ ...@@ -1178,7 +1178,7 @@ CLEAN_FILES += u-boot.lds include/bmp_logo.h include/bmp_logo_data.h \
CLOBBER_DIRS += $(patsubst %,spl/%, $(filter-out Makefile, \ CLOBBER_DIRS += $(patsubst %,spl/%, $(filter-out Makefile, \
$(shell ls -1 spl 2>/dev/null))) \ $(shell ls -1 spl 2>/dev/null))) \
tpl tpl
CLOBBER_FILES += u-boot* MLO MLO* SPL System.map nand_spl/u-boot* CLOBBER_FILES += u-boot* MLO* SPL System.map nand_spl/u-boot*
# Directories & files removed with 'make mrproper' # Directories & files removed with 'make mrproper'
MRPROPER_DIRS += include/config include/generated MRPROPER_DIRS += include/config include/generated
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment