ecc4dcbd82
The target machine is represented by TARGET_ARCH. MACHINE_ARCH always represents the host machine. When TARGET_ARCH is not defined, it is assumed to be equal to MACHINE_ARCH. This means that we're building a native toolset by default. We're creating cross-compilation tools when MACHINE_ARCH != TARGET_ARCH. TARGET_ARCH is defined when building binutils as part of the bootstrap build and is set to reflect the architecture we're currently cross- building. With this change binutils is ready for cross-building.
24 lines
451 B
Makefile
24 lines
451 B
Makefile
#
|
|
# $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}
|