2000-04-02 22:36:56 +00:00
|
|
|
# $FreeBSD$
|
2001-10-14 00:58:59 +00:00
|
|
|
|
|
|
|
SRCS+= aout32.c \
|
|
|
|
cpu-sparc.c \
|
|
|
|
elf32-sparc.c \
|
|
|
|
elf32-target.h \
|
|
|
|
elf32.c \
|
|
|
|
elf64-sparc.c \
|
|
|
|
elf64-target.h \
|
|
|
|
elf64.c \
|
|
|
|
elflink.c \
|
|
|
|
sparcnetbsd.c \
|
|
|
|
sunos.c
|
|
|
|
VECS+= bfd_elf32_sparc_vec bfd_elf64_sparc_vec sparcnetbsd_vec sunos_big_vec
|
|
|
|
|
2000-04-02 22:36:56 +00:00
|
|
|
.if ${TARGET_ARCH} == "sparc64"
|
2001-10-14 00:58:59 +00:00
|
|
|
CFLAGS+= -DDEFAULT_VECTOR=bfd_elf64_sparc_vec
|
2000-04-02 22:36:56 +00:00
|
|
|
.endif
|
2001-10-14 00:58:59 +00:00
|
|
|
CFLAGS+= -DHAVE_bfd_elf32_sparc_vec -DHAVE_bfd_elf64_sparc_vec \
|
|
|
|
-DHAVE_sparcnetbsd_vec -DHAVE_sunos_big_vec
|
2000-04-16 23:42:25 +00:00
|
|
|
CLEANFILES+= elf32-target.h elf64-target.h
|
2000-04-02 22:36:56 +00:00
|
|
|
|
|
|
|
elf32-target.h: elfxx-target.h
|
|
|
|
sed -e s/NN/32/g ${.ALLSRC} > ${.TARGET}
|
2000-04-16 23:42:25 +00:00
|
|
|
|
|
|
|
elf64-target.h: elfxx-target.h
|
|
|
|
sed -e s/NN/64/g ${.ALLSRC} > ${.TARGET}
|