1# $OpenBSD: Makefile,v 1.2 2017/07/09 15:28:36 espie Exp $ 2 3LIB= clangRewriteFrontend 4NOPIC= 5NOPROFILE= 6 7CPPFLAGS+= ${CLANG_INCLUDES} 8 9.include <bsd.own.mk> 10SRCS= FixItRewriter.cpp \ 11 FrontendActions.cpp \ 12 HTMLPrint.cpp \ 13 InclusionRewriter.cpp \ 14 RewriteMacros.cpp \ 15 RewriteModernObjC.cpp \ 16 RewriteObjC.cpp \ 17 RewriteTest.cpp 18 19.PATH: ${.CURDIR}/../../../llvm/tools/clang/lib/Frontend/Rewrite 20 21install: 22 @# Nothing here so far ... 23 24.include <bsd.lib.mk> 25