Files
clang-p2996/lldb/test/api/check_public_api_headers/Makefile
Johnny Chen 025c58fc15 Patches for running some of the Linux tests from Dawn, thanks!
With some minor modification from me.

llvm-svn: 147160
2011-12-22 19:21:46 +00:00

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_BUILD_DIR)/_lldb.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