This change adds a missing include path to the ObjC LanguageRuntime path to the MacOSX SystemRuntime plugin's Makefile. It also adds the panel and curses library to the liblldb shared library linkage step. Changes by Jevin Sweval with a minor tweak. llvm-svn: 202547
16 lines
521 B
Makefile
16 lines
521 B
Makefile
##===- source/Plugins/SystemRuntime/MacOSX ----*- 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 := lldbPluginSystemRuntimeMacOSX
|
|
BUILD_ARCHIVE = 1
|
|
|
|
CPP.Flags += -I$(PROJ_SRC_DIR)/../../LanguageRuntime/ObjC/AppleObjCRuntime
|
|
include $(LLDB_LEVEL)/Makefile
|