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