24faccc241
Given that we have converted to ELFv2 for BE already, endianness is the only difference between the two ARCHs. As such, there is no need to differentiate LIBC_ARCH between the two. Combining them like this lets us avoid needing to have two copies of several bits for no good reason. Sponsored by: Tag1 Consulting, Inc.
15 lines
257 B
Makefile
15 lines
257 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.if exists(${.CURDIR}/${MACHINE_ARCH:S/powerpc64le/powerpc64/})
|
|
SUBDIR+= ${MACHINE_ARCH:S/powerpc64le/powerpc64/}
|
|
.else
|
|
SUBDIR+= ${MACHINE_CPUARCH}
|
|
.endif
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.subdir.mk>
|