kbuild: move spl/Makefile to scripts/Makefile.spl
All files under spl/ and tpl/ are generated during the build process except spl/Makefile. We can simplify clean-rule and git-ignore by moving spl/Makefile to somewhere else. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
This commit is contained in:
parent
ddc94378db
commit
c71630838d
3 changed files with 4 additions and 7 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -49,8 +49,7 @@
|
||||||
/errlog
|
/errlog
|
||||||
/reloc_off
|
/reloc_off
|
||||||
|
|
||||||
/spl/*
|
/spl/
|
||||||
!/spl/Makefile
|
|
||||||
/tpl/
|
/tpl/
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
8
Makefile
8
Makefile
|
@ -1128,13 +1128,13 @@ u-boot.lds: $(LDSCRIPT) prepare FORCE
|
||||||
spl/u-boot-spl.bin: spl/u-boot-spl
|
spl/u-boot-spl.bin: spl/u-boot-spl
|
||||||
@:
|
@:
|
||||||
spl/u-boot-spl: tools prepare
|
spl/u-boot-spl: tools prepare
|
||||||
$(Q)$(MAKE) obj=spl -f $(srctree)/spl/Makefile all
|
$(Q)$(MAKE) obj=spl -f $(srctree)/scripts/Makefile.spl all
|
||||||
|
|
||||||
spl/sunxi-spl.bin: spl/u-boot-spl
|
spl/sunxi-spl.bin: spl/u-boot-spl
|
||||||
@:
|
@:
|
||||||
|
|
||||||
tpl/u-boot-tpl.bin: tools prepare
|
tpl/u-boot-tpl.bin: tools prepare
|
||||||
$(Q)$(MAKE) obj=tpl -f $(srctree)/spl/Makefile all CONFIG_TPL_BUILD=y
|
$(Q)$(MAKE) obj=tpl -f $(srctree)/scripts/Makefile.spl all CONFIG_TPL_BUILD=y
|
||||||
|
|
||||||
TAG_SUBDIRS := $(u-boot-dirs) include
|
TAG_SUBDIRS := $(u-boot-dirs) include
|
||||||
|
|
||||||
|
@ -1214,9 +1214,7 @@ CLEAN_FILES += u-boot.lds include/bmp_logo.h include/bmp_logo_data.h \
|
||||||
include/tpl-autoconf.mk
|
include/tpl-autoconf.mk
|
||||||
|
|
||||||
# Directories & files removed with 'make clobber'
|
# Directories & files removed with 'make clobber'
|
||||||
CLOBBER_DIRS += $(patsubst %,spl/%, $(filter-out Makefile, \
|
CLOBBER_DIRS += spl tpl
|
||||||
$(shell ls -1 spl 2>/dev/null))) \
|
|
||||||
tpl
|
|
||||||
CLOBBER_FILES += u-boot* MLO* SPL System.map
|
CLOBBER_FILES += u-boot* MLO* SPL System.map
|
||||||
|
|
||||||
# Directories & files removed with 'make mrproper'
|
# Directories & files removed with 'make mrproper'
|
||||||
|
|
Loading…
Reference in a new issue