xref: /openbsd-src/gnu/usr.bin/clang/lldb-tblgen/Makefile (revision aa1fa3d4849d8c6172fb7a884e8fa612b2ab7385)
1# $OpenBSD: Makefile,v 1.1 2020/08/03 14:45:31 patrick Exp $
2
3PROG=	lldb-tblgen
4NOMAN=
5
6.include <bsd.own.mk>
7SRCS=	LLDBOptionDefEmitter.cpp \
8	LLDBPropertyDefEmitter.cpp \
9	LLDBTableGen.cpp \
10	LLDBTableGenUtils.cpp
11
12.PATH:	${.CURDIR}/../../../llvm/lldb/utils/TableGen
13
14LLVM_LIBDEPS=	LLVMTableGen LLVMSupport
15
16install:
17	@# Nothing here so far ...
18
19.include <bsd.prog.mk>
20