diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-10-21 02:53:27 (GMT) |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-10-31 17:26:45 (GMT) |
commit | 02b3bf390e25c0902a7653e05beac8c111f3dcb9 (patch) | |
tree | 5f52a7552a45cb75dfd27167ee10b08643c369f7 /board/espt | |
parent | 774b7d5ba9a812c4c41361a8a20a14ae5c287b99 (diff) | |
download | u-boot-02b3bf390e25c0902a7653e05beac8c111f3dcb9.tar.xz |
sh: convert makefiles to Kbuild style
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Diffstat (limited to 'board/espt')
-rw-r--r-- | board/espt/Makefile | 24 |
1 files changed, 2 insertions, 22 deletions
diff --git a/board/espt/Makefile b/board/espt/Makefile index 107e544..8a8a2c9 100644 --- a/board/espt/Makefile +++ b/board/espt/Makefile @@ -7,25 +7,5 @@ # SPDX-License-Identifier: GPL-2.0+ # -include $(TOPDIR)/config.mk - -LIB = $(obj)lib$(BOARD).o - -COBJS := espt.o -SOBJS := lowlevel_init.o - -SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) -OBJS := $(addprefix $(obj),$(COBJS)) -SOBJS := $(addprefix $(obj),$(SOBJS)) - -$(LIB): $(OBJS) $(SOBJS) - $(call cmd_link_o_target, $(OBJS) $(SOBJS)) - -######################################################################### - -# defines $(obj).depend target -include $(SRCTREE)/rules.mk - -sinclude $(obj).depend - -######################################################################### +obj-y := espt.o +obj-y += lowlevel_init.o |