Drop main() prototype. Syncs with NetBSD-8
[minix.git] / external / bsd / llvm / bin / bugpoint / Makefile
blob3ee0bcf666e4797755231a448479d375e208a81c
1 # $NetBSD: Makefile,v 1.8 2015/01/29 20:41:33 joerg Exp $
3 PROG_CXX= bugpoint
4 NOMAN= yes
6 .include <bsd.init.mk>
8 .PATH: ${LLVM_SRCDIR}/tools/bugpoint
10 SRCS= 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
20 LLVM_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
42 .include "${.PARSEDIR}/../../link.mk"
44 .include <bsd.prog.mk>