blob: 50d0c8831ad1867e82b082c8af7059990293b9f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $FreeBSD$
PROG_CXX=opt
SRCDIR= tools/opt
SRCS= AnalysisWrappers.cpp \
GraphPrinters.cpp \
PrintSCC.cpp \
opt.cpp
TGHDRS= Intrinsics
LIBDEPS=llvmipo \
llvmscalaropts \
llvminstcombine \
llvminstrumentation \
llvmtransformutils \
llvmipa \
llvmanalysis \
llvmtarget \
llvmmc \
llvmasmparser \
llvmbitwriter \
llvmbitreader \
llvmcore \
llvmsupport
.include "../clang.prog.mk"
|