blob: 8a3179a9721614599739cd81b492b789992f3257 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $OpenBSD: Makefile,v 1.1 2016/09/05 10:56:50 pascal Exp $
LIB= clangEdit
NOPIC=
NOPROFILE=
CPPFLAGS+= ${CLANG_INCLUDES}
.include <bsd.own.mk>
SRCS= Commit.cpp \
EditedSource.cpp \
RewriteObjCFoundationAPI.cpp
.PATH: ${.CURDIR}/../../../llvm/tools/clang/lib/Edit
depend:
# Nothing here so far ...
install:
# Nothing here so far ...
.include <bsd.lib.mk>
|