aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/stop-on-sharedlibrary-load/Makefile
blob: e4b0e86c0c36c8ab55c74f4d98565c2217db9eb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CXX_SOURCES := main.cpp
USE_LIBDL := 1

a.out: lib_a lib_b

include Makefile.rules

lib_a:
	"$(MAKE)" -f $(MAKEFILE_RULES) \
		DYLIB_ONLY=YES DYLIB_CXX_SOURCES=a.cpp DYLIB_NAME=load_a

lib_b:
	"$(MAKE)" -f $(MAKEFILE_RULES) \
		DYLIB_ONLY=YES DYLIB_CXX_SOURCES=b.cpp DYLIB_NAME=load_b