1# $OpenBSD: Makefile,v 1.3 2020/08/03 14:45:29 patrick 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/clang/lib/Frontend/Rewrite
20
21install:
22	@# Nothing here so far ...
23
24.include <bsd.lib.mk>
25