28 lines
		
	
	
		
			383 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			383 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #	$NetBSD: Makefile,v 1.4 2013/04/25 13:59:56 joerg Exp $
 | |
| 
 | |
| PROG_CXX=	llvm-extract
 | |
| NOMAN=		yes
 | |
| 
 | |
| .include <bsd.init.mk>
 | |
| 
 | |
| .PATH: ${LLVM_SRCDIR}/tools/llvm-extract
 | |
| 
 | |
| SRCS=	llvm-extract.cpp
 | |
| 
 | |
| LLVM_LIBS+= \
 | |
| 	IRReader \
 | |
| 	AsmParser \
 | |
| 	BitReader \
 | |
| 	BitWriter \
 | |
| 	ipo \
 | |
| 	TransformsUtils \
 | |
| 	Analysis \
 | |
| 	Target \
 | |
| 	ipa \
 | |
| 	IR \
 | |
| 	Support
 | |
| 
 | |
| .include "${.PARSEDIR}/../../link.mk"
 | |
| 
 | |
| .include <bsd.prog.mk>
 | 
