blob: 43867dbe3f20f7ca828653c4290ecd59e70fbdf5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $OpenBSD: Makefile,v 1.3 2020/08/03 14:45:29 patrick Exp $
LIB= clangRewriteFrontend
NOPIC=
NOPROFILE=
CPPFLAGS+= ${CLANG_INCLUDES}
.include <bsd.own.mk>
SRCS= FixItRewriter.cpp \
FrontendActions.cpp \
HTMLPrint.cpp \
InclusionRewriter.cpp \
RewriteMacros.cpp \
RewriteModernObjC.cpp \
RewriteObjC.cpp \
RewriteTest.cpp
.PATH: ${.CURDIR}/../../../llvm/clang/lib/Frontend/Rewrite
install:
@# Nothing here so far ...
.include <bsd.lib.mk>
|