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