blob: 1bfbfea9bdb5520f6f771e9aafb0c47ce6acccf9 (
plain)
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.2 2016/09/05 12:48:25 pascal Exp $
LIB= clangRewrite
NOPIC=
NOPROFILE=
CPPFLAGS+= ${CLANG_INCLUDES}
.include <bsd.own.mk>
SRCS= DeltaTree.cpp \
HTMLRewrite.cpp \
RewriteRope.cpp \
Rewriter.cpp \
TokenRewriter.cpp
.PATH: ${.CURDIR}/../../../llvm/tools/clang/lib/Rewrite
depend:
# Nothing here so far ...
install:
# Nothing here so far ...
.include <bsd.lib.mk>
|