xref: /freebsd/usr.bin/clang/llvm-mca/Makefile (revision 67b158f6ad12a431b990b0c06e0582023734f0f5)
1*67b158f6SDimitry Andric# $FreeBSD$
2*67b158f6SDimitry Andric
3*67b158f6SDimitry AndricPROG_CXX=	llvm-mca
4*67b158f6SDimitry AndricMAN=
5*67b158f6SDimitry Andric
6*67b158f6SDimitry AndricSRCDIR=		tools/llvm-mca
7*67b158f6SDimitry AndricSRCS+=		CodeRegion.cpp
8*67b158f6SDimitry AndricSRCS+=		Context.cpp
9*67b158f6SDimitry AndricSRCS+=		DispatchStage.cpp
10*67b158f6SDimitry AndricSRCS+=		DispatchStatistics.cpp
11*67b158f6SDimitry AndricSRCS+=		ExecuteStage.cpp
12*67b158f6SDimitry AndricSRCS+=		FetchStage.cpp
13*67b158f6SDimitry AndricSRCS+=		HWEventListener.cpp
14*67b158f6SDimitry AndricSRCS+=		HardwareUnit.cpp
15*67b158f6SDimitry AndricSRCS+=		InstrBuilder.cpp
16*67b158f6SDimitry AndricSRCS+=		Instruction.cpp
17*67b158f6SDimitry AndricSRCS+=		InstructionInfoView.cpp
18*67b158f6SDimitry AndricSRCS+=		InstructionTables.cpp
19*67b158f6SDimitry AndricSRCS+=		LSUnit.cpp
20*67b158f6SDimitry AndricSRCS+=		Pipeline.cpp
21*67b158f6SDimitry AndricSRCS+=		PipelinePrinter.cpp
22*67b158f6SDimitry AndricSRCS+=		RegisterFile.cpp
23*67b158f6SDimitry AndricSRCS+=		RegisterFileStatistics.cpp
24*67b158f6SDimitry AndricSRCS+=		ResourcePressureView.cpp
25*67b158f6SDimitry AndricSRCS+=		RetireControlUnit.cpp
26*67b158f6SDimitry AndricSRCS+=		RetireControlUnitStatistics.cpp
27*67b158f6SDimitry AndricSRCS+=		RetireStage.cpp
28*67b158f6SDimitry AndricSRCS+=		Scheduler.cpp
29*67b158f6SDimitry AndricSRCS+=		SchedulerStatistics.cpp
30*67b158f6SDimitry AndricSRCS+=		Stage.cpp
31*67b158f6SDimitry AndricSRCS+=		SummaryView.cpp
32*67b158f6SDimitry AndricSRCS+=		Support.cpp
33*67b158f6SDimitry AndricSRCS+=		TimelineView.cpp
34*67b158f6SDimitry AndricSRCS+=		View.cpp
35*67b158f6SDimitry AndricSRCS+=		llvm-mca.cpp
36*67b158f6SDimitry Andric
37*67b158f6SDimitry AndricLIBADD+=	z
38*67b158f6SDimitry Andric
39*67b158f6SDimitry Andric.include "../llvm.prog.mk"
40