forked from OSchip/llvm-project
17 lines
342 B
Makefile
17 lines
342 B
Makefile
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
|