Home | History | Annotate | Line # | Download | only in libLLVMMCParser
Makefile revision 1.1
      1 #	$NetBSD: Makefile,v 1.1 2019/11/11 22:45:09 joerg Exp $
      2 
      3 LIB=	LLVMMCParser
      4 
      5 .include <bsd.init.mk>
      6 
      7 .PATH: ${LLVM_SRCDIR}/lib/MC/MCParser
      8 
      9 SRCS+=	AsmLexer.cpp \
     10 	AsmParser.cpp \
     11 	COFFAsmParser.cpp \
     12 	DarwinAsmParser.cpp \
     13 	ELFAsmParser.cpp \
     14 	MCAsmLexer.cpp \
     15 	MCAsmParser.cpp \
     16 	MCAsmParserExtension.cpp \
     17 	MCTargetAsmParser.cpp \
     18 	WasmAsmParser.cpp
     19 
     20 .if defined(HOSTLIB)
     21 .include <bsd.hostlib.mk>
     22 .else
     23 .include <bsd.lib.mk>
     24 .endif
     25