1*0a6a1f1dSLionel Sambuc# $NetBSD: Makefile,v 1.21 2015/01/29 20:41:34 joerg Exp $ 2f4a2713aSLionel Sambuc 3f4a2713aSLionel SambucPROG_CXX= llvm-mc 4f4a2713aSLionel SambucNOMAN= yes 5f4a2713aSLionel Sambuc 6f4a2713aSLionel Sambuc.include <bsd.init.mk> 7f4a2713aSLionel Sambuc 8f4a2713aSLionel Sambuc.PATH: ${LLVM_SRCDIR}/tools/llvm-mc 9f4a2713aSLionel Sambuc 10f4a2713aSLionel SambucSRCS= llvm-mc.cpp \ 11f4a2713aSLionel Sambuc Disassembler.cpp 12f4a2713aSLionel Sambuc 13f4a2713aSLionel SambucLLVM_LIBS+= \ 14f4a2713aSLionel Sambuc MCDisassembler \ 15f4a2713aSLionel Sambuc AArch64CodeGen \ 16f4a2713aSLionel Sambuc AArch64TargetInfo \ 17f4a2713aSLionel Sambuc AArch64AsmParser \ 18f4a2713aSLionel Sambuc AArch64MCTargetDesc \ 19f4a2713aSLionel Sambuc AArch64AsmPrinter \ 20f4a2713aSLionel Sambuc AArch64Disassembler \ 21f4a2713aSLionel Sambuc AArch64Utils \ 22f4a2713aSLionel Sambuc ARMCodeGen \ 23f4a2713aSLionel Sambuc ARMTargetInfo \ 24f4a2713aSLionel Sambuc ARMAsmParser \ 25f4a2713aSLionel Sambuc ARMMCTargetDesc \ 26f4a2713aSLionel Sambuc ARMAsmPrinter \ 27f4a2713aSLionel Sambuc ARMDisassembler \ 28f4a2713aSLionel Sambuc MipsCodeGen \ 29f4a2713aSLionel Sambuc MipsTargetInfo \ 30f4a2713aSLionel Sambuc MipsAsmParser \ 31f4a2713aSLionel Sambuc MipsDisassembler \ 32f4a2713aSLionel Sambuc MipsMCTargetDesc \ 33f4a2713aSLionel Sambuc MipsAsmPrinter \ 34f4a2713aSLionel Sambuc PowerPCCodeGen \ 35f4a2713aSLionel Sambuc PowerPCAsmParser \ 36*0a6a1f1dSLionel Sambuc PowerPCDisassembler \ 37f4a2713aSLionel Sambuc PowerPCTargetInfo \ 38f4a2713aSLionel Sambuc PowerPCMCTargetDesc \ 39f4a2713aSLionel Sambuc PowerPCAsmPrinter \ 40*0a6a1f1dSLionel Sambuc SparcAsmParser \ 41f4a2713aSLionel Sambuc SparcCodeGen \ 42f4a2713aSLionel Sambuc SparcTargetInfo \ 43f4a2713aSLionel Sambuc SparcMCTargetDesc \ 44*0a6a1f1dSLionel Sambuc SparcDisassembler \ 45*0a6a1f1dSLionel Sambuc SparcAsmPrinter \ 46*0a6a1f1dSLionel Sambuc X86AsmParser \ 47f4a2713aSLionel Sambuc X86CodeGen \ 48f4a2713aSLionel Sambuc X86TargetInfo \ 49f4a2713aSLionel Sambuc X86MCTargetDesc \ 50f4a2713aSLionel Sambuc X86Disassembler \ 51f4a2713aSLionel Sambuc X86AsmPrinter \ 52f4a2713aSLionel Sambuc X86Utils \ 53*0a6a1f1dSLionel Sambuc MCDisassembler \ 54f4a2713aSLionel Sambuc Object \ 55f4a2713aSLionel Sambuc SelectionDAG \ 56f4a2713aSLionel Sambuc CodeGen \ 57f4a2713aSLionel Sambuc Target \ 58f4a2713aSLionel Sambuc ScalarOpts \ 59f4a2713aSLionel Sambuc TransformsUtils \ 60f4a2713aSLionel Sambuc Analysis \ 61f4a2713aSLionel Sambuc AsmPrinter \ 62f4a2713aSLionel Sambuc MCParser \ 63f4a2713aSLionel Sambuc MC \ 64f4a2713aSLionel Sambuc IR \ 65f4a2713aSLionel Sambuc Support 66f4a2713aSLionel Sambuc 67*0a6a1f1dSLionel SambucLDADD+= -lz 68*0a6a1f1dSLionel SambucDPADD+= ${LIBZ} 69*0a6a1f1dSLionel Sambuc 70f4a2713aSLionel Sambuc.include "${.PARSEDIR}/../../link.mk" 71f4a2713aSLionel Sambuc 72f4a2713aSLionel Sambuc.include <bsd.prog.mk> 73