mirror of
https://github.com/opnsense/src.git
synced 2026-04-01 07:25:10 -04:00
21 lines
301 B
Makefile
21 lines
301 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
LIB= llvmipa
|
|
|
|
SRCDIR= lib/Analysis/IPA
|
|
SRCS= CallGraph.cpp \
|
|
CallGraphSCCPass.cpp \
|
|
CallPrinter.cpp \
|
|
FindUsedTypes.cpp \
|
|
GlobalsModRef.cpp \
|
|
InlineCost.cpp
|
|
|
|
.if ${MK_CLANG_EXTRAS} != "no"
|
|
SRCS+= IPA.cpp
|
|
.endif
|
|
|
|
TGHDRS= Intrinsics
|
|
|
|
.include "../clang.lib.mk"
|