blob: 219386d3dfcdb6201abb9c40e6ecde541c9668ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#
# $FreeBSD$
#
SRCS+= aout-sparcle.c \
cf-sparclynx.c \
coff-sparc.c \
cpu-sparc.c \
elf32-sparc.c \
elf32-target.h \
elf32.c \
elflink.c \
sparclinux.c \
sparclynx.c \
sparcnetbsd.c
VECS+= bfd_elf32_sparc_vec
.if ${TARGET_ARCH} == "sparc"
CFLAGS+= -DDEFAULT_VECTOR=bfd_elf32_sparc_vec
.endif
CFLAGS+= -DHAVE_elf32_sparc_vec
CLEANFILES+= elf32-target.h
elf32-target.h: elfxx-target.h
sed -e s/NN/32/g ${.ALLSRC} > ${.TARGET}
|