mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 01:30:47 -04:00
14 lines
238 B
Makefile
14 lines
238 B
Makefile
|
|
.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>
|