Makefile revision 1.3
1# $OpenBSD: Makefile,v 1.3 2019/01/27 16:59:42 patrick 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	JSONBackend.cpp \
13	Record.cpp \
14	SetTheory.cpp \
15	StringMatcher.cpp \
16	TableGenBackend.cpp \
17	TGLexer.cpp \
18	TGParser.cpp
19
20.PATH:	${.CURDIR}/../../../llvm/lib/TableGen
21
22install:
23	@# Nothing here so far ...
24
25.include <bsd.lib.mk>
26