2012-06-13 07:29:47 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2000-2006
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2012-06-13 07:29:47 +00:00
|
|
|
#
|
|
|
|
|
2013-10-17 08:34:48 +00:00
|
|
|
obj-y = lowlevel_init.o
|
|
|
|
obj-y += cpu_info.o
|
|
|
|
obj-y += emac.o
|
|
|
|
|
|
|
|
obj-$(CONFIG_DISPLAY_BOARDINFO) += board.o
|
|
|
|
obj-$(CONFIG_GLOBAL_TIMER) += timer.o
|
|
|
|
obj-$(CONFIG_R8A7740) += cpu_info-r8a7740.o
|
|
|
|
obj-$(CONFIG_R8A7740) += pfc-r8a7740.o
|
|
|
|
obj-$(CONFIG_SH73A0) += cpu_info-sh73a0.o
|
|
|
|
obj-$(CONFIG_SH73A0) += pfc-sh73a0.o
|
|
|
|
obj-$(CONFIG_TMU_TIMER) += sh_timer.o
|
|
|
|
|
|
|
|
SRCS += $(obj)sh_timer.c
|
2012-10-02 16:40:39 +00:00
|
|
|
# from arch/sh/lib/ directory
|
|
|
|
$(obj)sh_timer.c:
|
|
|
|
@rm -f $(obj)sh_timer.c
|
|
|
|
ln -s $(SRCTREE)/arch/sh/lib/time.c $(obj)sh_timer.c
|