Home | History | Annotate | Line # | Download | only in libLLVMMCParser
      1 #	$NetBSD: Makefile,v 1.2 2021/05/30 01:56:53 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 	COFFMasmParser.cpp \
     13 	DarwinAsmParser.cpp \
     14 	ELFAsmParser.cpp \
     15 	MasmParser.cpp \
     16 	MCAsmLexer.cpp \
     17 	MCAsmParser.cpp \
     18 	MCAsmParserExtension.cpp \
     19 	MCTargetAsmParser.cpp \
     20 	WasmAsmParser.cpp
     21 
     22 .if defined(HOSTLIB)
     23 .include <bsd.hostlib.mk>
     24 .else
     25 .include <bsd.lib.mk>
     26 .endif
     27