xref: /freebsd/lib/clang/Makefile (revision d9a9f23d0b3f1676d5656b76301341c0037d15b7)
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