]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - gnu/usr.bin/binutils/libbfd/Makefile.arm
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / gnu / usr.bin / binutils / libbfd / Makefile.arm
1 # $FreeBSD$
2
3 .if ${TARGET_ARCH} == "armeb"
4 DEFAULT_VECTOR= bfd_elf32_bigarm_vec
5 .else
6 DEFAULT_VECTOR= bfd_elf32_littlearm_vec
7 .endif
8
9 SRCS+=  cpu-arm.c \
10         elf32.c \
11         elf32-arm.c \
12         elf32-gen.c \
13         elf32-target.h \
14         elflink.c
15
16 VECS+=  ${DEFAULT_VECTOR}
17 .if ${TARGET_ARCH} == "armeb"
18 VECS+=  bfd_elf32_littlearm_vec
19 .else
20 VECS+=  bfd_elf32_bigarm_vec
21 .endif