xref: /freebsd/lib/libclang_rt/Makefile (revision fcb560670601b2a4d87bb31d7531c8dcc37ee71b)
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