Makefile revision 277146
1# $FreeBSD: head/lib/libclang_rt/Makefile 277146 2015-01-13 19:54:47Z dim $
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