Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/API/functionalities/archives/Makefile')
-rw-r--r--lldb/test/API/functionalities/archives/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/API/functionalities/archives/Makefile b/lldb/test/API/functionalities/archives/Makefile
index 43bf6b22f478..868e2d698c93 100644
--- a/lldb/test/API/functionalities/archives/Makefile
+++ b/lldb/test/API/functionalities/archives/Makefile
@@ -9,11 +9,13 @@ a.out: main.o libfoo.a
libfoo.a: a.o b.o
$(AR) $(ARFLAGS) $@ $^
+ $(RM) $^
# This tests whether lldb can load a thin archive
libbar.a: c.o
$(eval LLVM_AR := $(LLVM_TOOLS_DIR)/llvm-ar)
$(eval LLVM_ARFLAGS := -rcsDT)
$(LLVM_AR) $(LLVM_ARFLAGS) $@ $^
+ # Note for thin archive case, we cannot remove c.o
include Makefile.rules