blob: f4429b6e4d92476b3c4fe0dcff5e1d90d7da3191 [file] [log] [blame]
Johnny Chen8ebed652012-02-20 21:39:21 +00001LEVEL = ../../test/make
2
3CXX_SOURCES := main.cpp
Greg Clayton58246632013-06-13 21:27:14 +00004EXE := lldb-lookup
5USE_LIBCPP := 1
Johnny Chen8ebed652012-02-20 21:39:21 +00006
7MY_OS = $(shell uname -s)
Greg Clayton58246632013-06-13 21:27:14 +00008
Johnny Chen8ebed652012-02-20 21:39:21 +00009ifeq "$(MY_OS)" "Darwin"
Greg Clayton58246632013-06-13 21:27:14 +000010 LLDB_BUILD_DIR ?= /Applications/Xcode.app/Contents/SharedFrameworks
11 LD_EXTRAS ?= -framework LLDB -Wl,-rpath,"$(LLDB_BUILD_DIR)"
12 FRAMEWORK_INCLUDES=-F"$(LLDB_BUILD_DIR)"
Johnny Chen8ebed652012-02-20 21:39:21 +000013else
14 LD_EXTRAS ?= $(LLDB_BUILD_DIR)/_lldb.so
15endif
16
17include $(LEVEL)/Makefile.rules