projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cf0a8ec
)
efikamx: Remove unused SOBJS
author
Fabio Estevam
<
[email protected]
>
Tue, 29 May 2012 07:39:59 +0000
(07:39 +0000)
committer
Albert ARIBAUD
<
[email protected]
>
Sat, 7 Jul 2012 12:07:26 +0000
(14:07 +0200)
There is no .S file in this directory, so just remove SOBJS.
Cc: Marek Vasut <
[email protected]
>
Signed-off-by: Fabio Estevam <
[email protected]
>
board/efikamx/Makefile
patch
|
blob
|
history
diff --git
a/board/efikamx/Makefile
b/board/efikamx/Makefile
index fdd188ecfc1eae6f33fe4731e8cdb758c5309881..bd2174fec32c0d8166890f68a54cdfe33c987c3b 100644
(file)
--- a/
board/efikamx/Makefile
+++ b/
board/efikamx/Makefile
@@
-33,12
+33,11
@@
ifdef CONFIG_CMD_USB
COBJS += efikamx-usb.o
endif
-SRCS := $(
SOBJS:.o=.S) $(
COBJS:.o=.c)
+SRCS := $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS))
-SOBJS := $(addprefix $(obj),$(SOBJS))
-$(LIB): $(obj).depend $(OBJS)
$(SOBJS)
- $(call cmd_link_o_target, $(OBJS)
$(SOBJS)
)
+$(LIB): $(obj).depend $(OBJS)
+ $(call cmd_link_o_target, $(OBJS))
#########################################################################