Summary: The current Makefile scheme only allows one dylib to be specified in each make invocation, so TestLoadUnload had a custom Makefile that's unrelated to the base Makefile.rules. This change uses recursive make invocations to bypass the single dylib restriction. See D11202 for more context. Reviewers: clayborg Subscribers: chaoren, lldb-commits Differential Revision: http://reviews.llvm.org/D11367 llvm-svn: 242813
12 lines
187 B
Makefile
12 lines
187 B
Makefile
LEVEL := ../../make
|
|
|
|
LIB_PREFIX := loadunload_
|
|
|
|
DYLIB_EXECUTABLE_PATH := $(CURDIR)
|
|
|
|
DYLIB_NAME := $(LIB_PREFIX)d
|
|
DYLIB_C_SOURCES := d.c
|
|
DYLIB_ONLY := YES
|
|
|
|
include $(LEVEL)/Makefile.rules
|