Makefile revision 1.2
1# $OpenBSD: Makefile,v 1.2 2017/07/09 15:28:35 espie Exp $
2
3LIB=	LLVMTableGen
4NOPIC=
5NOPROFILE=
6
7CPPFLAGS+=	-I${LLVM_SRCS}/include/llvm/TableGen
8
9.include <bsd.own.mk>
10SRCS=	Error.cpp \
11	Main.cpp \
12	Record.cpp \
13	SetTheory.cpp \
14	StringMatcher.cpp \
15	TableGenBackend.cpp \
16	TGLexer.cpp \
17	TGParser.cpp
18
19.PATH:	${.CURDIR}/../../../llvm/lib/TableGen
20
21install:
22	@# Nothing here so far ...
23
24.include <bsd.lib.mk>
25