mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 23:06:12 -05:00
21 lines
357 B
Makefile
21 lines
357 B
Makefile
# $FreeBSD$
|
|
|
|
.if ${TARGET_ARCH:Marm*eb} != ""
|
|
DEFAULT_VECTOR= bfd_elf32_bigarm_vec
|
|
.else
|
|
DEFAULT_VECTOR= bfd_elf32_littlearm_vec
|
|
.endif
|
|
|
|
SRCS+= cpu-arm.c \
|
|
elf32.c \
|
|
elf32-arm.c \
|
|
elf32-gen.c \
|
|
elf32-target.h \
|
|
elflink.c
|
|
|
|
VECS+= ${DEFAULT_VECTOR}
|
|
.if ${TARGET_ARCH:Marm*eb} != ""
|
|
VECS+= bfd_elf32_littlearm_vec
|
|
.else
|
|
VECS+= bfd_elf32_bigarm_vec
|
|
.endif
|