36 lines
		
	
	
		
			666 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			666 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #	$NetBSD: Makefile,v 1.5 2012/10/28 17:07:46 joerg Exp $
 | |
| 
 | |
| LIB=	LLVMipo
 | |
| 
 | |
| .include <bsd.init.mk>
 | |
| 
 | |
| .PATH: ${LLVM_SRCDIR}/lib/Transforms/IPO
 | |
| 
 | |
| SRCS+=	ArgumentPromotion.cpp \
 | |
| 	BarrierNoopPass.cpp \
 | |
| 	ConstantMerge.cpp \
 | |
| 	DeadArgumentElimination.cpp \
 | |
| 	ExtractGV.cpp \
 | |
| 	FunctionAttrs.cpp \
 | |
| 	GlobalDCE.cpp \
 | |
| 	GlobalOpt.cpp \
 | |
| 	IPConstantPropagation.cpp \
 | |
| 	IPO.cpp \
 | |
| 	InlineAlways.cpp \
 | |
| 	InlineSimple.cpp \
 | |
| 	Inliner.cpp \
 | |
| 	Internalize.cpp \
 | |
| 	LoopExtractor.cpp \
 | |
| 	MergeFunctions.cpp \
 | |
| 	PartialInlining.cpp \
 | |
| 	PassManagerBuilder.cpp \
 | |
| 	PruneEH.cpp \
 | |
| 	StripDeadPrototypes.cpp \
 | |
| 	StripSymbols.cpp
 | |
| 
 | |
| .if defined(HOSTLIB)
 | |
| .include <bsd.hostlib.mk>
 | |
| .else
 | |
| .include <bsd.lib.mk>
 | |
| .endif
 | 
