xref: /freebsd/lib/clang/Makefile (revision 658a47d1ef6a0e8d56d346c5c16dcb2e001c3a40)
1# $FreeBSD$
2
3.include <src.opts.mk>
4
5# These have to be built in order.
6SUBDIR=		libllvm
7.if ${MK_CLANG} != "no" || ${MK_LLDB} != "no"
8SUBDIR+=	libclang
9SUBDIR+=	headers
10.endif
11.if ${MK_LLDB} != "no"
12SUBDIR+=	liblldb
13.endif
14
15.include <bsd.subdir.mk>
16