1
2.include <src.opts.mk>
3
4# These have to be built in order.
5SUBDIR=		libllvm
6.if ${MK_CLANG} != "no" || ${MK_LLDB} != "no"
7SUBDIR+=	libclang
8SUBDIR+=	headers
9.endif
10.if ${MK_LLDB} != "no"
11SUBDIR+=	liblldb
12.endif
13
14.include <bsd.subdir.mk>
15