xref: /minix/external/bsd/llvm/bin/bugpoint/Makefile (revision 0a6a1f1d)
1#	$NetBSD: Makefile,v 1.8 2015/01/29 20:41:33 joerg Exp $
2
3PROG_CXX=	bugpoint
4NOMAN=		yes
5
6.include <bsd.init.mk>
7
8.PATH: ${LLVM_SRCDIR}/tools/bugpoint
9
10SRCS=	BugDriver.cpp \
11	CrashDebugger.cpp \
12	ExecutionDriver.cpp \
13	ExtractFunction.cpp \
14	FindBugs.cpp \
15	Miscompilation.cpp \
16	OptimizerDriver.cpp \
17	ToolRunner.cpp \
18	bugpoint.cpp
19
20LLVM_LIBS+= \
21	CodeGen \
22	ObjCARC \
23	IRReader \
24	AsmParser \
25	BitReader \
26	BitWriter \
27	InstCombine \
28	Instrumentation \
29	MC \
30	Linker \
31	ScalarOpts \
32	ProfileData \
33	Target \
34	ipo \
35	Vectorize \
36	TransformsUtils \
37	Analysis \
38	ipa \
39	IR \
40	Support
41
42.include "${.PARSEDIR}/../../link.mk"
43
44.include <bsd.prog.mk>
45