From: Fabio Estevam Date: Tue, 29 May 2012 07:39:59 +0000 (+0000) Subject: efikamx: Remove unused SOBJS X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=38e984dec66e3542a00381e714586d58733e3d7e;p=project%2Fbcm63xx%2Fu-boot.git efikamx: Remove unused SOBJS There is no .S file in this directory, so just remove SOBJS. Cc: Marek Vasut Signed-off-by: Fabio Estevam --- diff --git a/board/efikamx/Makefile b/board/efikamx/Makefile index fdd188ecfc..bd2174fec3 100644 --- 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)) #########################################################################