mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
d0b2dbfa0e
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
17 lines
312 B
Makefile
17 lines
312 B
Makefile
|
|
.include <src.opts.mk>
|
|
|
|
.ifndef CLANG_SRCS
|
|
.error Please define CLANG_SRCS before including this file
|
|
.endif
|
|
|
|
CFLAGS+= -I${CLANG_SRCS}/include
|
|
|
|
.if ${MK_CLANG_FULL} != "no"
|
|
CFLAGS+= -DCLANG_ENABLE_ARCMT
|
|
CFLAGS+= -DCLANG_ENABLE_STATIC_ANALYZER
|
|
.endif
|
|
|
|
CFLAGS.gcc+= -fno-strict-aliasing
|
|
|
|
.include "llvm.build.mk"
|