forked from OSchip/llvm-project
parent
0cc040780e
commit
3c19a6ac48
|
@ -14,14 +14,17 @@ include $(LLDB_LEVEL)/../../Makefile.config
|
|||
DIRS := common
|
||||
|
||||
ifeq ($(HOST_OS),Darwin)
|
||||
DIRS += posix
|
||||
DIRS += macosx
|
||||
endif
|
||||
|
||||
ifeq ($(HOST_OS),Linux)
|
||||
DIRS += posix
|
||||
DIRS += linux
|
||||
endif
|
||||
|
||||
ifneq (,$(filter $(HOST_OS), FreeBSD GNU/kFreeBSD))
|
||||
DIRS += posix
|
||||
DIRS += freebsd
|
||||
endif
|
||||
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
##===- source/Host/posix/Makefile --------------------------*- Makefile -*-===##
|
||||
#
|
||||
# The LLVM Compiler Infrastructure
|
||||
#
|
||||
# This file is distributed under the University of Illinois Open Source
|
||||
# License. See LICENSE.TXT for details.
|
||||
#
|
||||
##===----------------------------------------------------------------------===##
|
||||
|
||||
LLDB_LEVEL := ../../..
|
||||
LIBRARYNAME := lldbHostPosix
|
||||
BUILD_ARCHIVE = 1
|
||||
|
||||
include $(LLDB_LEVEL)/Makefile
|
Loading…
Reference in New Issue