[Lldb-commits] [PATCH] D17957: Expression evaluation for overloaded C functions
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 14 09:51:33 PDT 2016
clayborg accepted this revision.
================
Comment at: packages/Python/lldbsuite/test/expression_command/call-overloaded-c-fuction/Makefile:8
@@ +7,2 @@
+clean::
+ rm -rf $(wildcard *.o *.d *.dSYM)
----------------
Maybe we can have a standard clean rule in the main makefiles:
standard_clean:
rm -rf $(wildcard *.o *.d *.dSYM)
And maybe we can call this before calling the "clean" where each test case can override this. Not required for this patch though.
Repository:
rL LLVM
http://reviews.llvm.org/D17957
More information about the lldb-commits
mailing list