]> Git Repo - u-boot.git/commitdiff
mx53loco: Remove unused SOBJS
authorFabio Estevam <[email protected]>
Tue, 29 May 2012 07:39:54 +0000 (07:39 +0000)
committerAlbert 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: Jason Liu <[email protected]>
Signed-off-by: Fabio Estevam <[email protected]>
Acked-by: Marek Vasut <[email protected]>
board/freescale/mx53loco/Makefile

index a6ea9396fbaa366f70dd067b3cd0dc9b16b73dce..8bc69a92c1c0e8a6c05a5084f5dc2ae14a430b86 100644 (file)
@@ -24,12 +24,11 @@ LIB = $(obj)lib$(BOARD).o
 
 COBJS  := mx53loco.o
 
-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))
 
 #########################################################################
 
This page took 0.034577 seconds and 4 git commands to generate.