diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-08-05 10:49:42 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-08-15 18:38:33 -0400 |
commit | 2f6af82719723033b35f2bf97e3fe4f65400781f (patch) | |
tree | 446ae989b23786133998fc524144d4f7a7778584 /arch/arm/cpu/arm1136/omap24xx/Makefile | |
parent | a704a6d615179a25f556c99d31cbc4ee366ffb54 (diff) |
ARM: omap24xx: remove remainders of dead board
Since Commit 7f5eef9 removed OMAP2420H4 support,
arm1136/omap24xx has not been used at all.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'arch/arm/cpu/arm1136/omap24xx/Makefile')
-rw-r--r-- | arch/arm/cpu/arm1136/omap24xx/Makefile | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/arch/arm/cpu/arm1136/omap24xx/Makefile b/arch/arm/cpu/arm1136/omap24xx/Makefile deleted file mode 100644 index 7d76d96ca5..0000000000 --- a/arch/arm/cpu/arm1136/omap24xx/Makefile +++ /dev/null @@ -1,31 +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$(SOC).o - -SOBJS = reset.o - -COBJS = timer.o - -SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) -OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) - -all: $(obj).depend $(LIB) - -$(LIB): $(OBJS) - $(call cmd_link_o_target, $(OBJS)) - -######################################################################### - -# defines $(obj).depend target -include $(SRCTREE)/rules.mk - -sinclude $(obj).depend - -######################################################################### |