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