mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -05:00
13 lines
245 B
Makefile
13 lines
245 B
Makefile
|
|
.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>
|