Makefile.arm revision 272461
1# $FreeBSD: releng/10.1/gnu/usr.bin/binutils/libbfd/Makefile.arm 239272 2012-08-15 03:21:56Z gonzo $
2
3.if ${TARGET_ARCH} == "armeb" || ${TARGET_ARCH} == "armv6eb"
4DEFAULT_VECTOR=	bfd_elf32_bigarm_vec
5.else
6DEFAULT_VECTOR=	bfd_elf32_littlearm_vec
7.endif
8
9SRCS+=	cpu-arm.c \
10	elf32.c \
11	elf32-arm.c \
12	elf32-gen.c \
13	elf32-target.h \
14	elflink.c
15
16VECS+=	${DEFAULT_VECTOR}
17.if ${TARGET_ARCH} == "armeb" || ${TARGET_ARCH} == "armv6eb"
18VECS+=	bfd_elf32_littlearm_vec
19.else
20VECS+=	bfd_elf32_bigarm_vec
21.endif
22