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