diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-10-17 17:34:52 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-10-31 12:53:39 -0400 |
commit | fa8f95084d06bd29c4ca75994a41c557345f53f6 (patch) | |
tree | e1f751f159ba1e7ed40795688156c4bb863abff2 /arch/arm/cpu/arm946es/Makefile | |
parent | 3d9c84737bbc3e30c4f04c09f552b56287d65bd8 (diff) | |
download | u-boot-imx-fa8f95084d06bd29c4ca75994a41c557345f53f6.zip u-boot-imx-fa8f95084d06bd29c4ca75994a41c557345f53f6.tar.gz u-boot-imx-fa8f95084d06bd29c4ca75994a41c557345f53f6.tar.bz2 |
ARM: convert makefiles to Kbuild style
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'arch/arm/cpu/arm946es/Makefile')
-rw-r--r-- | arch/arm/cpu/arm946es/Makefile | 26 |
1 files changed, 2 insertions, 24 deletions
diff --git a/arch/arm/cpu/arm946es/Makefile b/arch/arm/cpu/arm946es/Makefile index 87e6c65..a44bddc 100644 --- a/arch/arm/cpu/arm946es/Makefile +++ b/arch/arm/cpu/arm946es/Makefile @@ -5,28 +5,6 @@ # SPDX-License-Identifier: GPL-2.0+ # -include $(TOPDIR)/config.mk +extra-y = start.o -LIB = $(obj)lib$(CPU).o - -START = start.o - -COBJS = cpu.o - -SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c) -OBJS := $(addprefix $(obj),$(COBJS) $(SOBJS)) -START := $(addprefix $(obj),$(START)) - -all: $(obj).depend $(START) $(LIB) - -$(LIB): $(OBJS) - $(call cmd_link_o_target, $(OBJS)) - -######################################################################### - -# defines $(obj).depend target -include $(SRCTREE)/rules.mk - -sinclude $(obj).depend - -######################################################################### +obj-y = cpu.o |