mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-16 17:41:31 -04:00
27 lines
373 B
Makefile
27 lines
373 B
Makefile
# $NetBSD: Makefile,v 1.2 2012/09/23 17:22:22 joerg Exp $
|
|
|
|
PROG_CXX= llvm-extract
|
|
NOMAN= yes
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${LLVM_SRCDIR}/tools/llvm-extract
|
|
|
|
SRCS= llvm-extract.cpp
|
|
|
|
LLVM_LIBS+= \
|
|
AsmParser \
|
|
BitReader \
|
|
BitWriter \
|
|
ipo \
|
|
TransformsUtils \
|
|
Analysis \
|
|
Target \
|
|
ipa \
|
|
Core \
|
|
Support
|
|
|
|
.include "${.PARSEDIR}/../../link.mk"
|
|
|
|
.include <bsd.prog.mk>
|