]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/sh/lib/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-blackfin
[karo-tx-uboot.git] / arch / sh / lib / Makefile
1 #
2 # Copyright (c) 2007
3 # Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4 #
5 # SPDX-License-Identifier:      GPL-2.0+
6 #
7
8
9 obj-y   += board.o
10 obj-$(CONFIG_CMD_BOOTM) += bootm.o
11 ifeq ($(CONFIG_SH2),y)
12 obj-y   += time_sh2.o
13 else
14 obj-y   += time.o
15 endif
16 obj-$(CONFIG_CMD_SH_ZIMAGEBOOT) += zimageboot.o
17
18
19
20 # Build private libgcc only when asked for
21 ifdef USE_PRIVATE_LIBGCC
22 lib-y   += ashiftrt.o
23 lib-y   += ashiftlt.o
24 lib-y   += lshiftrt.o
25 lib-y   += ashldi3.o
26 lib-y   += ashrsi3.o
27 lib-y   += lshrdi3.o
28 lib-y   += movmem.o
29 endif