mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 14:55:36 -05:00
26 lines
573 B
Makefile
26 lines
573 B
Makefile
# $FreeBSD$
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
|
|
SUBDIR+= include
|
|
SUBDIR+= asan
|
|
SUBDIR+= asan-preinit
|
|
SUBDIR+= asan_cxx
|
|
SUBDIR+= asan_dynamic
|
|
SUBDIR+= safestack
|
|
SUBDIR+= stats
|
|
SUBDIR+= stats_client
|
|
.if ${MACHINE_CPUARCH} == "amd64"
|
|
SUBDIR+= tsan
|
|
SUBDIR+= tsan_cxx
|
|
.endif
|
|
SUBDIR+= ubsan_minimal
|
|
SUBDIR+= ubsan_standalone
|
|
SUBDIR+= ubsan_standalone_cxx
|
|
.endif
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" || \
|
|
(${MACHINE_CPUARCH} == "arm" && ${MACHINE_ARCH} != "armeb")
|
|
SUBDIR+= profile
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|