xref: /minix3/external/bsd/llvm/lib/libLLVMX86AsmPrinter/Makefile (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc#	$NetBSD: Makefile,v 1.2 2011/05/12 14:56:24 joerg Exp $
2*f4a2713aSLionel Sambuc
3*f4a2713aSLionel SambucLIB=	LLVMX86AsmPrinter
4*f4a2713aSLionel SambucNOGCCERROR=	yes
5*f4a2713aSLionel Sambuc
6*f4a2713aSLionel Sambuc.include <bsd.init.mk>
7*f4a2713aSLionel Sambuc
8*f4a2713aSLionel SambucX86_OBJDIR!=	cd ${.CURDIR}/../libLLVMX86CodeGen && ${PRINTOBJDIR}
9*f4a2713aSLionel SambucCPPFLAGS+=	-I${X86_OBJDIR} -I${LLVM_SRCDIR}/lib/Target/X86
10*f4a2713aSLionel Sambuc
11*f4a2713aSLionel Sambuc.PATH: ${LLVM_SRCDIR}/lib/Target/X86/InstPrinter
12*f4a2713aSLionel Sambuc
13*f4a2713aSLionel SambucSRCS+=	X86ATTInstPrinter.cpp \
14*f4a2713aSLionel Sambuc	X86IntelInstPrinter.cpp \
15*f4a2713aSLionel Sambuc	X86InstComments.cpp
16*f4a2713aSLionel Sambuc
17*f4a2713aSLionel Sambuc.if defined(HOSTLIB)
18*f4a2713aSLionel Sambuc.include <bsd.hostlib.mk>
19*f4a2713aSLionel Sambuc.else
20*f4a2713aSLionel Sambuc.include <bsd.lib.mk>
21*f4a2713aSLionel Sambuc.endif
22