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