mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
d0b2dbfa0e
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
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>
|