Makefile revision 288943
1# $FreeBSD: head/lib/libclang_rt/Makefile 288943 2015-10-06 17:53:29Z dim $
2
3.include <src.opts.mk>
4
5.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
6SUBDIR+= asan\
7	 asan-preinit\
8	 asan_cxx\
9	 safestack\
10	 ubsan_standalone\
11	 ubsan_standalone_cxx
12.endif
13
14.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" || \
15    (${MACHINE_CPUARCH} == "arm" && ${MACHINE_ARCH} != "armeb")
16SUBDIR+= profile
17.endif
18
19.include <bsd.subdir.mk>
20