diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-10-21 11:53:26 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-10-31 13:26:45 -0400 |
commit | 774b7d5ba9a812c4c41361a8a20a14ae5c287b99 (patch) | |
tree | 34b7c72d8c26508ff3ca270b3926c1835532eddc /board/gaisler/grsim_leon2/Makefile | |
parent | 61698478a38d25fe0de6e88518999d8bfcda6bc3 (diff) | |
download | u-boot-imx-774b7d5ba9a812c4c41361a8a20a14ae5c287b99.zip u-boot-imx-774b7d5ba9a812c4c41361a8a20a14ae5c287b99.tar.gz u-boot-imx-774b7d5ba9a812c4c41361a8a20a14ae5c287b99.tar.bz2 |
sparc: convert makefiles to Kbuild style
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Daniel Hellstrom <daniel@gaisler.com>
Diffstat (limited to 'board/gaisler/grsim_leon2/Makefile')
-rw-r--r-- | board/gaisler/grsim_leon2/Makefile | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/board/gaisler/grsim_leon2/Makefile b/board/gaisler/grsim_leon2/Makefile index 2c0119e..5468305 100644 --- a/board/gaisler/grsim_leon2/Makefile +++ b/board/gaisler/grsim_leon2/Makefile @@ -5,24 +5,4 @@ # SPDX-License-Identifier: GPL-2.0+ # -include $(TOPDIR)/config.mk - -LIB = $(obj)lib$(BOARD).o - -COBJS := $(BOARD).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 - -######################################################################### +obj-y := grsim_leon2.o |