9
0
Fork 0

Makefile: fix endless make when 'make barebox.s'

add the same target barebox.s (with a lowercase 's')
to make both work with barebox.S and barebox.s.

Signed-off-by: Du Huanpeng <u74147@gmail.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Du Huanpeng 2013-12-16 19:47:22 +08:00 committed by Sascha Hauer
parent 3b04e00d7e
commit 038fe953e6
1 changed files with 2 additions and 2 deletions

View File

@ -701,7 +701,7 @@ barebox.uimage: $(KBUILD_BINARY) FORCE
$(call if_changed,barebox_mkimage)
ifdef CONFIG_X86
barebox.S: barebox
barebox.S barebox.s: barebox
ifdef CONFIG_X86_HDBOOT
@echo "-------------------------------------------------" > barebox.S
@echo " * MBR content" >> barebox.S
@ -723,7 +723,7 @@ endif
@echo " * Init Calls content" >> barebox.S
$(Q)$(OBJDUMP) -j .barebox_initcalls -d barebox >> barebox.S
else
barebox.S: barebox FORCE
barebox.S barebox.s: barebox FORCE
$(call if_changed,disasm)
endif