1# $OpenBSD: Makefile,v 1.4 2023/11/11 18:35:39 robert Exp $ 2 3LIB= clangParse 4NOPIC= 5NOPROFILE= 6 7CPPFLAGS+= ${CLANG_INCLUDES} 8 9.include <bsd.own.mk> 10 11SRCS= ParseAST.cpp \ 12 ParseCXXInlineMethods.cpp \ 13 ParseDecl.cpp \ 14 ParseDeclCXX.cpp \ 15 ParseExpr.cpp \ 16 ParseExprCXX.cpp \ 17 ParseHLSL.cpp \ 18 ParseInit.cpp \ 19 ParseObjc.cpp \ 20 ParseOpenMP.cpp \ 21 ParsePragma.cpp \ 22 ParseStmt.cpp \ 23 ParseStmtAsm.cpp \ 24 ParseTemplate.cpp \ 25 ParseTentative.cpp \ 26 Parser.cpp 27 28.PATH: ${.CURDIR}/../../../llvm/clang/lib/Parse 29 30install: 31 @# Nothing here so far ... 32 33.include <bsd.lib.mk> 34