blob: 3497ddf05318f2e676c913b725a5b0628256433b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $OpenBSD: Makefile,v 1.1 2018/10/04 11:43:29 patrick Exp $
LIB= lldbHostPOSIX
NOPIC=
NOPROFILE=
.include <bsd.own.mk>
SRCS= ConnectionFileDescriptorPosix.cpp \
DomainSocket.cpp \
FileSystem.cpp \
HostInfoPosix.cpp \
HostProcessPosix.cpp \
HostThreadPosix.cpp \
LockFilePosix.cpp \
PipePosix.cpp \
ProcessLauncherPosixFork.cpp \
.PATH: ${.CURDIR}/../../../llvm/tools/lldb/source/Host/posix
install:
@# Nothing here so far ...
.include <bsd.lib.mk>
CPPFLAGS+= ${LLDB_INCLUDES}
CPPFLAGS+= ${CLANG_INCLUDES}
|