Try to fix the Make build

llvm-svn: 215782
This commit is contained in:
Zachary Turner 2014-08-15 22:50:48 +00:00
parent 0cc040780e
commit 3c19a6ac48
2 changed files with 17 additions and 0 deletions

View File

@ -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

View File

@ -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