xref: /freebsd/lib/libclang_rt/Makefile (revision ec273ebf3b6aed5fba8c56b6ece5ad8693a48ea7)
1# $FreeBSD$
2
3.include <src.opts.mk>
4
5.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
6SUBDIR+= asan\
7	 asan_cxx\
8	 san\
9	 ubsan\
10	 ubsan_cxx
11.endif
12
13.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" || \
14    (${MACHINE_CPUARCH} == "arm" && ${MACHINE_ARCH} != "armeb")
15SUBDIR+= profile
16.endif
17
18.include <bsd.subdir.mk>
19