mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 16:48:36 -05:00
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.
14 lines
257 B
Makefile
14 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>
|