summaryrefslogtreecommitdiffstats
path: root/lldb/examples/lookup/Makefile
blob: f4429b6e4d92476b3c4fe0dcff5e1d90d7da3191 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
LEVEL = ../../test/make

CXX_SOURCES := main.cpp
EXE := lldb-lookup
USE_LIBCPP := 1

MY_OS = $(shell uname -s)

ifeq "$(MY_OS)" "Darwin"
    LLDB_BUILD_DIR ?= /Applications/Xcode.app/Contents/SharedFrameworks
    LD_EXTRAS ?= -framework LLDB -Wl,-rpath,"$(LLDB_BUILD_DIR)"
    FRAMEWORK_INCLUDES=-F"$(LLDB_BUILD_DIR)"
else
    LD_EXTRAS ?= $(LLDB_BUILD_DIR)/_lldb.so
endif

include $(LEVEL)/Makefile.rules
OpenPOWER on IntegriCloud