diff options
Diffstat (limited to 'gnu/usr.bin/clang/libLLVMMipsDesc')
-rw-r--r-- | gnu/usr.bin/clang/libLLVMMipsDesc/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/usr.bin/clang/libLLVMMipsDesc/Makefile b/gnu/usr.bin/clang/libLLVMMipsDesc/Makefile new file mode 100644 index 00000000000..d57355ca363 --- /dev/null +++ b/gnu/usr.bin/clang/libLLVMMipsDesc/Makefile @@ -0,0 +1,31 @@ +# $OpenBSD: Makefile,v 1.1 2017/01/25 19:24:33 patrick Exp $ + +LIB= LLVMMipsDesc +NOPIC= +NOPROFILE= + +CPPFLAGS+= -I${.OBJDIR}/../include/llvm/Mips -I${LLVM_SRCS}/lib/Target/Mips + +.include <bsd.own.mk> +SRCS= MipsABIInfo.cpp \ + MipsABIFlagsSection.cpp \ + MipsAsmBackend.cpp \ + MipsELFObjectWriter.cpp \ + MipsELFStreamer.cpp \ + MipsMCAsmInfo.cpp \ + MipsMCCodeEmitter.cpp \ + MipsMCExpr.cpp \ + MipsMCTargetDesc.cpp \ + MipsNaClELFStreamer.cpp \ + MipsOptionRecord.cpp \ + MipsTargetStreamer.cpp + +.PATH: ${.CURDIR}/../../../llvm/lib/Target/Mips/MCTargetDesc + +depend: + # Nothing here so far ... + +install: + # Nothing here so far ... + +.include <bsd.lib.mk> |