summaryrefslogtreecommitdiff
path: root/lldb/test/API/tools/lldb-dap/module/Makefile
blob: c7d626a1a7e4c1606c827c764a57b42efe9724ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
DYLIB_NAME := foo
DYLIB_CXX_SOURCES := foo.cpp
CXX_SOURCES := main.cpp

LD_EXTRAS := -Wl,-rpath "-Wl,$(shell pwd)"
USE_LIBDL :=1

include Makefile.rules

all: a.out.stripped

a.out.stripped:
	$(STRIP) -o a.out.stripped a.out

ifneq "$(CODESIGN)" ""
	$(CODESIGN) -fs - a.out.stripped
endif