xref: /openbsd/gnu/usr.bin/clang/liblldCore/Makefile (revision d415bd75)
1# $OpenBSD: Makefile,v 1.6 2020/08/03 14:45:29 patrick Exp $
2
3LIB=	lldCore
4NOPROFILE=
5
6CPPFLAGS+=	-I${LLD_SRCS}/include
7
8.include <bsd.own.mk>
9SRCS=	DefinedAtom.cpp \
10	Error.cpp \
11	File.cpp \
12	LinkingContext.cpp \
13	Reader.cpp \
14	Resolver.cpp \
15	SymbolTable.cpp \
16	Writer.cpp
17
18.PATH:	${.CURDIR}/../../../llvm/lld/lib/Core
19
20install:
21	@# Nothing here so far ...
22
23.include <bsd.lib.mk>
24