diff options
Diffstat (limited to 'gnu/usr.bin/clang/libclangParse/Makefile')
-rw-r--r-- | gnu/usr.bin/clang/libclangParse/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/usr.bin/clang/libclangParse/Makefile b/gnu/usr.bin/clang/libclangParse/Makefile new file mode 100644 index 00000000000..d7562807401 --- /dev/null +++ b/gnu/usr.bin/clang/libclangParse/Makefile @@ -0,0 +1,34 @@ +# $OpenBSD: Makefile,v 1.1 2016/09/05 10:56:50 pascal Exp $ + +LIB= clangParse +NOPIC= +NOPROFILE= + +CPPFLAGS+= ${CLANG_INCLUDES} + +.include <bsd.own.mk> +SRCS= ParseAST.cpp \ + ParseCXXInlineMethods.cpp \ + ParseDecl.cpp \ + ParseDeclCXX.cpp \ + ParseExpr.cpp \ + ParseExprCXX.cpp \ + ParseInit.cpp \ + ParseObjc.cpp \ + ParseOpenMP.cpp \ + ParsePragma.cpp \ + ParseStmt.cpp \ + ParseStmtAsm.cpp \ + ParseTemplate.cpp \ + ParseTentative.cpp \ + Parser.cpp + +.PATH: ${.CURDIR}/../../../llvm/tools/clang/lib/Parse + +depend: + # Nothing here so far ... + +install: + # Nothing here so far ... + +.include <bsd.lib.mk> |