blob: d94e77c140b5d7913af1f1c1c0845c8456a47a40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
LEVEL = ../../make
CXX_SOURCES := main.cpp
MY_OS = $(shell uname -s)
ifeq "$(MY_OS)" "Darwin"
LD_EXTRAS ?= -framework LLDB
else
LD_EXTRAS ?= $(LLDB_LIB_DIR)/liblldb.so
endif
# Example dictionary to pass to the Python build method:
#
# FRAMEWORK_INCLUDES=-F/Volumes/data/lldb/svn/trunk/build/Debug
include $(LEVEL)/Makefile.rules
|