mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 01:59:01 -05:00
The tests haven't been run them, but this is enough to build them so I can get feedback on if the various crt.h headers are correct. MFC with: r339738 Sponsored by: DARPA, AFRL
14 lines
207 B
Makefile
14 lines
207 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.if exists(${.CURDIR}/${MACHINE_ARCH})
|
|
SUBDIR+= ${MACHINE_ARCH}
|
|
.else
|
|
SUBDIR+= ${MACHINE_CPUARCH}
|
|
.endif
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.subdir.mk>
|