diff mbox

[U-Boot] kup: Delete an unused Makefile

Message ID 1382317284-23187-1-git-send-email-yamada.m@jp.panasonic.com
State Accepted
Delegated to: Tom Rini
Headers show

Commit Message

Masahiro Yamada Oct. 21, 2013, 1:01 a.m. UTC
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Klaus Heydeck <heydeck@kieback-peter.de>
---

board/${VENDOR}/${BOARD}/Makefile is used.
board/${VENDOR}/common/Makefile is used if it exists.
whereas, board/${VENDOR}/Makefile is never used.


 board/kup/Makefile | 28 ----------------------------
 1 file changed, 28 deletions(-)
 delete mode 100644 board/kup/Makefile

Comments

Tom Rini Nov. 8, 2013, 10:28 p.m. UTC | #1
On Mon, Oct 21, 2013 at 10:01:24AM +0900, Masahiro Yamada wrote:

> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
> Cc: Klaus Heydeck <heydeck@kieback-peter.de>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/board/kup/Makefile b/board/kup/Makefile
deleted file mode 100644
index 05be72f..0000000
--- a/board/kup/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@ 
-#
-# (C) Copyright 2000-2006
-# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
-#
-# SPDX-License-Identifier:	GPL-2.0+
-#
-
-include $(TOPDIR)/config.mk
-
-LIB	= $(obj)lib$(BOARD).o
-
-COBJS	= $(BOARD).o flash.o kup.o
-
-SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
-OBJS	:= $(addprefix $(obj),$(COBJS))
-SOBJS	:= $(addprefix $(obj),$(SOBJS))
-
-$(LIB):	$(obj).depend $(OBJS)
-	$(call cmd_link_o_target, $(OBJS))
-
-#########################################################################
-
-# defines $(obj).depend target
-include $(SRCTREE)/rules.mk
-
-sinclude $(obj).depend
-
-#########################################################################