aboutsummaryrefslogtreecommitdiff
path: root/examples/lookup/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/lookup/Makefile')
-rw-r--r--examples/lookup/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/lookup/Makefile b/examples/lookup/Makefile
new file mode 100644
index 000000000000..f4429b6e4d92
--- /dev/null
+++ b/examples/lookup/Makefile
@@ -0,0 +1,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