mirror of
https://github.com/intel/llvm.git
synced 2026-02-04 11:38:04 +08:00
12 lines
241 B
Makefile
12 lines
241 B
Makefile
all: foo.dylib
|
|
|
|
CWD := $(shell pwd)
|
|
|
|
all: foo.dylib
|
|
|
|
foo.dylib:
|
|
clang++ -O0 -g -stdlib=libc++ -dynamiclib -o plugin.dylib plugin.cpp -framework LLDB -F $(LLDB_FRAMEWORK)/..
|
|
|
|
clean:
|
|
rm -rf plugin.dylib plugin.dylib.dSYM/* plugin.dylib.dSYM
|