opnsense-src/gnu/usr.bin/binutils/libbfd/Makefile.arm

22 lines
413 B
Makefile
Raw Normal View History

2006-07-22 10:37:17 -04:00
# $FreeBSD$
.if ${TARGET_ARCH} == "armeb" || ${TARGET_ARCH} == "armv6eb"
DEFAULT_VECTOR= bfd_elf32_bigarm_vec
.else
2006-07-22 10:37:17 -04:00
DEFAULT_VECTOR= bfd_elf32_littlearm_vec
.endif
2006-07-22 10:37:17 -04:00
SRCS+= cpu-arm.c \
elf32.c \
elf32-arm.c \
elf32-gen.c \
2006-08-10 12:39:55 -04:00
elf32-target.h \
elflink.c
2006-07-22 10:37:17 -04:00
VECS+= ${DEFAULT_VECTOR}
.if ${TARGET_ARCH} == "armeb" || ${TARGET_ARCH} == "armv6eb"
VECS+= bfd_elf32_littlearm_vec
.else
VECS+= bfd_elf32_bigarm_vec
2006-09-14 03:02:17 -04:00
.endif