[Lldb-commits] [lldb] r370845 - [dotest] Avoid the need for LEVEL= makefile boilerplate
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Wed Sep 4 00:46:27 PDT 2019
Author: labath
Date: Wed Sep 4 00:46:25 2019
New Revision: 370845
URL: http://llvm.org/viewvc/llvm-project?rev=370845&view=rev
Log:
[dotest] Avoid the need for LEVEL= makefile boilerplate
Summary:
Instead of each test case knowing its depth relative to the test root,
we can just have dotest add the folder containing Makefile.rules to the
include path.
This was motivated by r370616, though I have been wanting to do this
ever since we moved to building tests out-of-tree.
The only manually modified files in this patch are lldbinline.py and
plugins/builder_base.py. The rest of the patch has been produced by this
shell command:
find . \( -name Makefile -o -name '*.mk' \) -exec sed --in-place -e '/LEVEL *:\?=/d' -e '1,2{/^$/d}' -e 's,\$(LEVEL)/,,' {} +
Reviewers: teemperor, aprantl, espindola, jfb
Subscribers: emaste, javed.absar, arichardson, christof, arphaman, lldb-commits
Differential Revision: https://reviews.llvm.org/D67083
Modified:
lldb/trunk/packages/Python/lldbsuite/test/Makefile
lldb/trunk/packages/Python/lldbsuite/test/android/platform/Makefile
lldb/trunk/packages/Python/lldbsuite/test/api/check_public_api_headers/Makefile
lldb/trunk/packages/Python/lldbsuite/test/api/listeners/Makefile
lldb/trunk/packages/Python/lldbsuite/test/api/multiple-debuggers/Makefile
lldb/trunk/packages/Python/lldbsuite/test/api/multiple-targets/Makefile
lldb/trunk/packages/Python/lldbsuite/test/api/multithreaded/Makefile
lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-it/Makefile
lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/Makefile
lldb/trunk/packages/Python/lldbsuite/test/benchmarks/continue/Makefile
lldb/trunk/packages/Python/lldbsuite/test/benchmarks/expression/Makefile
lldb/trunk/packages/Python/lldbsuite/test/benchmarks/libcxxlist/Makefile
lldb/trunk/packages/Python/lldbsuite/test/benchmarks/libcxxmap/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/add-dsym/uuid/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/apropos/with-process/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/breakpoint/basic/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/command/nested_alias/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/command/script/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/command/script/import/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/disassemble/basic/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/argument_passing_restrictions/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-function/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-overridden-method/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-restarts/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-throws/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/cast_int_to_anonymous_enum/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/char/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/class_template_specialization_empty_pack/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash-incomplete-record/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash-lambda/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash1/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash2/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/context-object-objc/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/context-object/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/dollar-in-variable/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/entry-bp/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/fixits/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/formatters/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/function_template_specialization_temp_args/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/basic/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/conflicts/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-basic/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-dbg-info-content/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-basic/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-dbg-info-content/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-basic/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-dbg-info-content/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/no-std-module/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/queue/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr-dbg-info-content/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/stack/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr-dbg-info-content/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-basic/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-bool/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-dbg-info-content/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-of-vectors/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr-dbg-info-content/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import_builtin_fileid/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/inline-namespace/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/ir-interpreter-phi-nodes/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/issue_11588/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/macros/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/multiline-completion/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_cpp_and_c/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_obj_c/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/no-deadlock/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/options/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persistent_types/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persistent_variables/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/po_verbosity/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/pr35310/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/radar_8638051/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/radar_9531204/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/radar_9673664/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/rdar42038760/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/rdar44436068/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/scoped_enums/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/test/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/timeout/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/top-level/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/top-level/dummy.mk
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/two-files/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/unicode-in-variable/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/unwind_expression/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/vector_of_enums/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/weak_symbols/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/expression/xvalue/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/array/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/bad-reference/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/complicated-expression/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-argument/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-function-return/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-this/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/inheritance/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/local-variable/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/virtual-method-call/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/frame/language/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/frame/recognizer/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/frame/select/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/frame/var-scope/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/frame/var/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/gui/basic/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/log/basic/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/process/attach-resume/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/process/attach/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/process/launch/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_bound_violation/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/register/register/register_command/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/settings/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/settings/quoting/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/source/info/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/statistics/basic/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/target/basic/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/target/create-deps/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/target/create-deps/a.mk
lldb/trunk/packages/Python/lldbsuite/test/commands/target/create-no-such-arch/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/target/stop-hooks/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchlocation/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchpoint/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/multi_watchpoint_slots/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/multiple_hits/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/multiple_threads/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/step_over_watchpoint/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/variable_out_of_scope/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/condition/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_disable/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_events/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_on_vectors/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/Makefile
lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_size/Makefile
lldb/trunk/packages/Python/lldbsuite/test/driver/batch_mode/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/archives/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/completion/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/conditional_break/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/format/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/dump_dynamic/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/setvaluefromcstring/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/typedef_array/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/deleted-executable/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/exec/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/exec/secondprog.mk
lldb/trunk/packages/Python/lldbsuite/test/functionalities/fat_archives/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-assert/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-changed/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-crashing/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/inline-stepping/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/simple.mk
lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/a.mk
lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/b.mk
lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/c.mk
lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/d.mk
lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/hidden/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_using_paths/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_using_paths/hidden/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/longjmp/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory-region/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/cache/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/find/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/read/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/mtc/simple/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/main.mk
lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/main.mk
lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/process_group/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/process_save_core/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/ptr_refs/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/recursion/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/rerun/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/return-value/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/set-data/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/raise/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/stats_api/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/step_scripted/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/target-new-solib-notifications/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/target_var/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/jump/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/multi_break/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/num_threads/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/state/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/step_out/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/step_until/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/basic/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/global_location/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/multiple/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tty/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/type_completion/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/type_lookup/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/ubsan/basic/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/standard/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/value_md5_crash/Makefile
lldb/trunk/packages/Python/lldbsuite/test/functionalities/var_path/Makefile
lldb/trunk/packages/Python/lldbsuite/test/issue_verification/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/anonymous/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/array_types/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/bitfields/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/blocks/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One.mk
lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two.mk
lldb/trunk/packages/Python/lldbsuite/test/lang/c/const_variables/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/enum_types/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/find_struct_type/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/forward/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/function_types/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/global_variables/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/local_variables/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/modules/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/offsetof/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/recurse/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/register_variables/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/set_values/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/shared_lib/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/step-target/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/stepping/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/strings/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/struct_types/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/tls_globals/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/typedef/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/unicode/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/unions/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/c/vla/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/auto/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/bool/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/call-function/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/chained-calls/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/char1632_t/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/char8_t/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class_static/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class_types/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/const_this/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/diamond/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/enum_types/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/exceptions/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/extern_c/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/function_refs/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/global_operators/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/global_variables/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/gmodules/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/inlines/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/llvm-style/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/modules-import/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_conflicts/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/a.mk
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/b.mk
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/nsimport/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/offsetof/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/operator-overload/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/operators/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/scope/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/signed_types/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/static_members/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/static_methods/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/stl/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/symbols/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/template-function/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/template/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/this/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/type_lookup/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/unique-types/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/virtual-overload/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/virtual/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/wchar_t/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/mixed/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/blocks/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Test.mk
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.mk
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/exceptions/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/forward-decl/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/foundation/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/global_ptrs/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-cache/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc++/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-checker/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-class-method/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-optimized/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-property/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-static-method/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-stepping/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-super/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/orderedset/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/print-obj/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/ptr_refs/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/radar-9691614/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/real-definition/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/sample/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/self/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/cxx-bridged-po/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/sample/Makefile
lldb/trunk/packages/Python/lldbsuite/test/linux/add-symbols/Makefile
lldb/trunk/packages/Python/lldbsuite/test/linux/builtin_trap/Makefile
lldb/trunk/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/Makefile
lldb/trunk/packages/Python/lldbsuite/test/linux/sepdebugsymlink/Makefile
lldb/trunk/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/Makefile
lldb/trunk/packages/Python/lldbsuite/test/lldbinline.py
lldb/trunk/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/Makefile
lldb/trunk/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile
lldb/trunk/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/Makefile
lldb/trunk/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/Makefile
lldb/trunk/packages/Python/lldbsuite/test/macosx/function-starts/Makefile
lldb/trunk/packages/Python/lldbsuite/test/macosx/indirect_symbol/Makefile
lldb/trunk/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/Makefile
lldb/trunk/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/create-empty-corefile.mk
lldb/trunk/packages/Python/lldbsuite/test/macosx/nslog/Makefile
lldb/trunk/packages/Python/lldbsuite/test/macosx/order/Makefile
lldb/trunk/packages/Python/lldbsuite/test/macosx/queues/Makefile
lldb/trunk/packages/Python/lldbsuite/test/macosx/safe-to-func-call/Makefile
lldb/trunk/packages/Python/lldbsuite/test/macosx/thread-names/Makefile
lldb/trunk/packages/Python/lldbsuite/test/macosx/universal/Makefile
lldb/trunk/packages/Python/lldbsuite/test/plugins/builder_base.py
lldb/trunk/packages/Python/lldbsuite/test/python_api/breakpoint/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/class_members/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/event/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/findvalue_duplist/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/formatters/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/frame/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/frame/get-variables/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/frame/inlines/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/function_symbol/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/hello_world/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/interpreter/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/lldbutil/frame/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/lldbutil/iter/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/lldbutil/process/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/module_section/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/name_lookup/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/objc_type/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/process/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/process/io/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/rdar-12481949/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/sbdata/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/sbvalue_persist/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/section/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/signals/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/symbol-context/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/target/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/thread/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/type/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/value/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/value/change_values/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/value/empty_class/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/value/linked_list/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/value_var_update/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/watchpoint/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/watchpoint/condition/Makefile
lldb/trunk/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/Makefile
lldb/trunk/packages/Python/lldbsuite/test/sample_test/Makefile
lldb/trunk/packages/Python/lldbsuite/test/source-manager/Makefile
lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/Makefile
lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/Makefile
lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/Makefile
lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/svr4lib_a.mk
lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/svr4lib_b_quote.mk
lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/Makefile
lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/register-reading/Makefile
lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/Makefile
lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/Makefile
lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/Makefile
lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/Makefile
lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/Makefile
lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/Makefile
lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/step/Makefile
lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/Makefile
lldb/trunk/packages/Python/lldbsuite/test/types/Makefile
Modified: lldb/trunk/packages/Python/lldbsuite/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LLDB_LEVEL := ..
include $(LLDB_LEVEL)/Makefile
.PHONY: programs
Modified: lldb/trunk/packages/Python/lldbsuite/test/android/platform/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/android/platform/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/android/platform/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/android/platform/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,2 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/api/check_public_api_headers/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/api/check_public_api_headers/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/api/check_public_api_headers/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/api/check_public_api_headers/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/api/listeners/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/api/listeners/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/api/listeners/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/api/listeners/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/api/multiple-debuggers/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/api/multiple-debuggers/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/api/multiple-debuggers/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/api/multiple-debuggers/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../make
-
MAKE_DSYM := NO
ENABLE_THREADS := YES
CXX_SOURCES := multi-process-driver.cpp testprog.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/api/multiple-targets/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/api/multiple-targets/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/api/multiple-targets/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/api/multiple-targets/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../make
-
MAKE_DSYM := NO
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/api/multithreaded/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/api/multithreaded/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/api/multithreaded/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/api/multithreaded/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../make
-
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
clean::
rm -rf $(wildcard *.o *.d *.dSYM)
Modified: lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-it/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-it/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-it/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-it/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS = -mthumb
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS = -mthumb
-include $(LEVEL)/Makefile.rules
\ No newline at end of file
+include Makefile.rules
\ No newline at end of file
Modified: lldb/trunk/packages/Python/lldbsuite/test/benchmarks/continue/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/benchmarks/continue/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/benchmarks/continue/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/benchmarks/continue/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/benchmarks/expression/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/benchmarks/expression/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/benchmarks/expression/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/benchmarks/expression/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/benchmarks/libcxxlist/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/benchmarks/libcxxlist/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/benchmarks/libcxxlist/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/benchmarks/libcxxlist/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/benchmarks/libcxxmap/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/benchmarks/libcxxmap/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/benchmarks/libcxxmap/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/benchmarks/libcxxmap/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/add-dsym/uuid/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/add-dsym/uuid/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/add-dsym/uuid/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/add-dsym/uuid/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/apropos/with-process/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/apropos/with-process/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/apropos/with-process/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/apropos/with-process/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/breakpoint/basic/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/breakpoint/basic/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/breakpoint/basic/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/breakpoint/basic/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c a.c b.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/command/nested_alias/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/command/nested_alias/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/command/nested_alias/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/command/nested_alias/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/command/script/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/command/script/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/command/script/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/command/script/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/command/script/import/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/command/script/import/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/command/script/import/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/command/script/import/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
EXE := hello_world
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1 @@
-LEVEL = ../../../../make
-
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/disassemble/basic/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/disassemble/basic/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/disassemble/basic/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/disassemble/basic/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/argument_passing_restrictions/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/argument_passing_restrictions/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/argument_passing_restrictions/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/argument_passing_restrictions/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-function/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-function/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-function/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-function/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
clean::
rm -rf $(wildcard *.o *.d *.dSYM)
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-overridden-method/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-overridden-method/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-overridden-method/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-overridden-method/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
clean::
rm -rf $(wildcard *.o *.d *.dSYM)
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-restarts/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-restarts/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-restarts/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-restarts/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := lotta-signals.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-throws/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-throws/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-throws/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/call-throws/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := call-throws.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/cast_int_to_anonymous_enum/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/cast_int_to_anonymous_enum/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/cast_int_to_anonymous_enum/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/cast_int_to_anonymous_enum/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/char/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/char/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/char/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/char/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/class_template_specialization_empty_pack/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/class_template_specialization_empty_pack/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/class_template_specialization_empty_pack/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/class_template_specialization_empty_pack/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash-incomplete-record/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash-incomplete-record/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash-incomplete-record/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash-incomplete-record/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash-lambda/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash-lambda/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash-lambda/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash-lambda/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash1/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash1/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash1/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash1/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash2/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash2/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash2/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion-crash2/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/completion/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp other.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/context-object-objc/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/context-object-objc/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/context-object-objc/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/context-object-objc/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/context-object/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/context-object/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/context-object/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/context-object/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/dollar-in-variable/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/dollar-in-variable/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/dollar-in-variable/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/dollar-in-variable/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS += -std=c99
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/entry-bp/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/entry-bp/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/entry-bp/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/entry-bp/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/fixits/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/fixits/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/fixits/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/fixits/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/formatters/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/formatters/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/formatters/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/formatters/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/function_template_specialization_temp_args/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/function_template_specialization_temp_args/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/function_template_specialization_temp_args/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/function_template_specialization_temp_args/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/basic/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/basic/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/basic/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/basic/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/conflicts/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/conflicts/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/conflicts/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/conflicts/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-basic/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-basic/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-basic/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-basic/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-dbg-info-content/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-dbg-info-content/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-dbg-info-content/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-dbg-info-content/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-basic/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-basic/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-basic/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-basic/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-dbg-info-content/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-dbg-info-content/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-dbg-info-content/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-dbg-info-content/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-basic/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-basic/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-basic/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-basic/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-dbg-info-content/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-dbg-info-content/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-dbg-info-content/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-dbg-info-content/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/no-std-module/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/no-std-module/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/no-std-module/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/no-std-module/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/queue/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/queue/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/queue/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/queue/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr-dbg-info-content/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr-dbg-info-content/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr-dbg-info-content/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr-dbg-info-content/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/stack/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/stack/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/stack/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/stack/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../../../make
# We don't have any standard include directories, so we can't
# parse the test_common.h header we usually inject as it includes
# system headers.
@@ -7,4 +6,4 @@ NO_TEST_COMMON_H := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXXFLAGS += -I $(SRCDIR)/root/usr/include/c++/include/ -I $(SRCDIR)/root/usr/include/ -nostdinc -nostdinc++ -nostdlib++
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr-dbg-info-content/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr-dbg-info-content/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr-dbg-info-content/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr-dbg-info-content/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-basic/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-basic/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-basic/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-basic/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-bool/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-bool/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-bool/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-bool/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-dbg-info-content/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-dbg-info-content/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-dbg-info-content/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-dbg-info-content/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-of-vectors/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-of-vectors/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-of-vectors/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-of-vectors/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr-dbg-info-content/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr-dbg-info-content/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr-dbg-info-content/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr-dbg-info-content/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../make
USE_LIBCPP := 1
CXXFLAGS += $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import_builtin_fileid/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import_builtin_fileid/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import_builtin_fileid/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/import_builtin_fileid/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Cocoa
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/inline-namespace/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/inline-namespace/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/inline-namespace/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/inline-namespace/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/ir-interpreter-phi-nodes/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/ir-interpreter-phi-nodes/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/ir-interpreter-phi-nodes/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/ir-interpreter-phi-nodes/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
default: a.out
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/issue_11588/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/issue_11588/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/issue_11588/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/issue_11588/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/macros/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/macros/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/macros/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/macros/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
DEBUG_INFO_FLAG = -g3
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/multiline-completion/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/multiline-completion/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/multiline-completion/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/multiline-completion/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_cpp_and_c/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_cpp_and_c/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_cpp_and_c/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_cpp_and_c/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_obj_c/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_obj_c/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_obj_c/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_obj_c/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../make
OBJCXX_SOURCES := main.mm util.mm
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/no-deadlock/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/no-deadlock/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/no-deadlock/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/no-deadlock/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
C_SOURCES := locking.c
ENABLE_THREADS := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/options/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/options/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/options/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/options/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp foo.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation -framework CloudKit
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persistent_types/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persistent_types/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persistent_types/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persistent_types/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persistent_variables/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persistent_variables/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persistent_variables/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/persistent_variables/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/po_verbosity/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/po_verbosity/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/po_verbosity/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/po_verbosity/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/pr35310/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/pr35310/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/pr35310/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/pr35310/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/radar_8638051/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/radar_8638051/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/radar_8638051/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/radar_8638051/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/radar_9531204/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/radar_9531204/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/radar_9531204/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/radar_9531204/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/radar_9673664/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/radar_9673664/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/radar_9673664/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/radar_9673664/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/rdar42038760/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/rdar42038760/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/rdar42038760/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/rdar42038760/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/rdar44436068/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/rdar44436068/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/rdar44436068/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/rdar44436068/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/scoped_enums/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/scoped_enums/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/scoped_enums/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/scoped_enums/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
CXXFLAGS += -std=c++11
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/test/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/test/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/test/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/timeout/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/timeout/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/timeout/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/timeout/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := wait-a-while.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/top-level/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/top-level/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/top-level/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/top-level/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp test.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
a.out: dummy
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/top-level/dummy.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/top-level/dummy.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/top-level/dummy.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/top-level/dummy.mk Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
CXX_SOURCES := dummy.cpp
EXE := dummy
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/two-files/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/two-files/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/two-files/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/two-files/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m foo.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/unicode-in-variable/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/unicode-in-variable/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/unicode-in-variable/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/unicode-in-variable/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
CXX_FLAGS_EXTRA := -finput-charset=UTF-8 -fextended-identifiers
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/unwind_expression/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/unwind_expression/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/unwind_expression/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/unwind_expression/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/vector_of_enums/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/vector_of_enums/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/vector_of_enums/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/vector_of_enums/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/weak_symbols/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/weak_symbols/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/weak_symbols/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/weak_symbols/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,6 @@
-LEVEL = ../../../make
CFLAGS_EXTRAS += -std=c99
LD_FLAGS := -dynamiclib
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
all: a.out dylib missing
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/expression/xvalue/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/expression/xvalue/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/expression/xvalue/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/expression/xvalue/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/array/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/array/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/array/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/array/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/bad-reference/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/bad-reference/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/bad-reference/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/bad-reference/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/complicated-expression/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/complicated-expression/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/complicated-expression/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/complicated-expression/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-argument/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-argument/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-argument/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-argument/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-function-return/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-function-return/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-function-return/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-function-return/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-this/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-this/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-this/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-this/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/inheritance/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/inheritance/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/inheritance/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/inheritance/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/local-variable/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/local-variable/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/local-variable/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/local-variable/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/virtual-method-call/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/virtual-method-call/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/virtual-method-call/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/frame/diagnose/virtual-method-call/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/frame/language/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/frame/language/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/frame/language/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/frame/language/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp other.cpp other-2.cpp
C_SOURCES := somefunc.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
other-2.o: other-2.cpp
$(CXX) $(CFLAGS_NO_DEBUG) -c $(SRCDIR)/other-2.cpp
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/frame/recognizer/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/frame/recognizer/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/frame/recognizer/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/frame/recognizer/Makefile Wed Sep 4 00:46:25 2019
@@ -1,10 +1,8 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
CFLAGS_EXTRAS += -g0 # No debug info.
MAKE_DSYM := NO
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/frame/select/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/frame/select/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/frame/select/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/frame/select/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/frame/var-scope/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/frame/var-scope/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/frame/var-scope/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/frame/var-scope/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/frame/var/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/frame/var/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/frame/var/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/frame/var/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS += -std=c99
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/gui/basic/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/gui/basic/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/gui/basic/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/gui/basic/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/log/basic/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/log/basic/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/log/basic/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/log/basic/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/process/attach-resume/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/process/attach-resume/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/process/attach-resume/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/process/attach-resume/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
ENABLE_THREADS := YES
EXE := AttachResume
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/process/attach/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/process/attach/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/process/attach/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/process/attach/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
EXE := ProcessAttach
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/Makefile Wed Sep 4 00:46:25 2019
@@ -1,12 +1,10 @@
-LEVEL = ../../../../make
-
CXX_SOURCES := main.cpp
EXE := AttachDenied
all: AttachDenied sign
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
sign: entitlements.plist AttachDenied
ifeq ($(OS),Darwin)
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/process/launch/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/process/launch/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/process/launch/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/process/launch/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
#CXX_SOURCES := print-cwd.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
CFLAGS_EXTRAS += -mmpx -fcheck-pointer-bounds -fuse-ld=bfd
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_bound_violation/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_bound_violation/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_bound_violation/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_bound_violation/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../../make
-
CXX_SOURCES := main.cpp
CFLAGS_EXTRAS += -mmpx -fcheck-pointer-bounds -fuse-ld=bfd
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/register/register/register_command/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/register/register/register_command/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/register/register/register_command/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/register/register/register_command/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../make
-
CXX_SOURCES := main.cpp a.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/settings/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/settings/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/settings/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/settings/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/settings/quoting/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/settings/quoting/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/settings/quoting/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/settings/quoting/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/source/info/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/source/info/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/source/info/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/source/info/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp second.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/statistics/basic/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/statistics/basic/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/statistics/basic/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/statistics/basic/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/target/basic/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/target/basic/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/target/basic/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/target/basic/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
# Example:
#
# C_SOURCES := b.c
# EXE := b.out
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/target/create-deps/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/target/create-deps/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/target/create-deps/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/target/create-deps/Makefile Wed Sep 4 00:46:25 2019
@@ -1,11 +1,9 @@
-LEVEL := ../../../make
-
LIB_PREFIX := load_
LD_EXTRAS := -L. -l$(LIB_PREFIX)a
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
a.out: lib_a
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/target/create-deps/a.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/target/create-deps/a.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/target/create-deps/a.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/target/create-deps/a.mk Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL := ../../../make
-
LIB_PREFIX := load_
DYLIB_NAME := $(LIB_PREFIX)a
DYLIB_CXX_SOURCES := a.cpp
DYLIB_ONLY := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/target/create-no-such-arch/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/target/create-no-such-arch/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/target/create-no-such-arch/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/target/create-no-such-arch/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/target/stop-hooks/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/target/stop-hooks/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/target/stop-hooks/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/target/stop-hooks/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS += -std=c99
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchlocation/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchlocation/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchlocation/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchlocation/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchpoint/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchpoint/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchpoint/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchpoint/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/multi_watchpoint_slots/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/multi_watchpoint_slots/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/multi_watchpoint_slots/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/multi_watchpoint_slots/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/multiple_hits/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/multiple_hits/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/multiple_hits/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/multiple_hits/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/multiple_threads/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/multiple_threads/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/multiple_threads/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/multiple_threads/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/step_over_watchpoint/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/step_over_watchpoint/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/step_over_watchpoint/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/step_over_watchpoint/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/variable_out_of_scope/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/variable_out_of_scope/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/variable_out_of_scope/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/variable_out_of_scope/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/condition/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/condition/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/condition/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/condition/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_disable/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_disable/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_disable/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_disable/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_events/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_events/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_events/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_events/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_on_vectors/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_on_vectors/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_on_vectors/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_on_vectors/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_size/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_size/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_size/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_size/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/driver/batch_mode/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/driver/batch_mode/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/driver/batch_mode/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/driver/batch_mode/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/archives/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/archives/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/archives/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/archives/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
MAKE_DSYM := NO
ARCHIVE_NAME := libfoo.a
ARCHIVE_C_SOURCES := a.c b.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS := -fsanitize=address -g -gcolumn-info
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/completion/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/completion/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/completion/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/completion/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/conditional_break/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/conditional_break/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/conditional_break/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/conditional_break/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/format/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/format/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/format/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/format/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
OBJCXX_SOURCES := main.mm
CFLAGS_EXTRAS += -w
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Accelerate
\ No newline at end of file
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
CFLAGS_EXTRAS += -w
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../../make
-
OBJC_SOURCES := main.m
CFLAGS_EXTRAS += -w
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../../make
-
OBJC_SOURCES := main.m
CFLAGS_EXTRAS += -w
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
CFLAGS_EXTRAS += -w
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
USE_LIBSTDCPP := 0
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -O0
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../../make
CXX_SOURCES := main.cpp
CXXFLAGS += -std=c++11
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../../../make
CXX_SOURCES := main.cpp
CXXFLAGS += -std=c++11
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../../../../make
CXX_SOURCES := main.cpp
CXXFLAGS += -std=c++11
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -O0
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -O0
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -O0
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -O0
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -O0
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -O0
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -std=c++17 -fno-exceptions
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -O0
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -std=c++11 -O0
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
# Work around "exception specification in declaration does not match previous
@@ -8,5 +6,5 @@ CXX_SOURCES := main.cpp
CFLAGS_EXTRAS += -fno-exceptions
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -O0
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -std=c++17
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -O0
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -O0
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
CFLAGS_EXTRAS += -O0
USE_LIBSTDCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
CFLAGS_EXTRAS += -O0
USE_LIBSTDCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBSTDCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
CXXFLAGS := -O0
USE_LIBSTDCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
CFLAGS_EXTRAS += -O0
USE_LIBSTDCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBSTDCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
USE_LIBSTDCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
CFLAGS_EXTRAS += -O0
USE_LIBSTDCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../../../make
-
CXX_SOURCES := main.cpp
CXXFLAGS := -O0
USE_LIBSTDCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/dump_dynamic/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/dump_dynamic/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/dump_dynamic/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/dump_dynamic/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
CXXFLAGS += -std=c++11
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
CFLAGS_EXTRAS += -w
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
CFLAGS_EXTRAS += -w
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
CFLAGS_EXTRAS += -w
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
OBJCXX_SOURCES := main.mm
CFLAGS_EXTRAS += -w
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
OBJCXX_SOURCES := main.mm
CFLAGS_EXTRAS += -w
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
CFLAGS_EXTRAS += -std=c++11
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/setvaluefromcstring/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/setvaluefromcstring/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/setvaluefromcstring/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/setvaluefromcstring/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../../make
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
CXXFLAGS += -std=c++11
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/Makefile Wed Sep 4 00:46:25 2019
@@ -1,10 +1,8 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
CFLAGS_EXTRAS += -w
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/typedef_array/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/typedef_array/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/typedef_array/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/typedef_array/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
CXXFLAGS += -std=c++11
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
ifeq "$(OS)" ""
@@ -15,4 +13,4 @@ endif
MAKE_DSYM := NO
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/deleted-executable/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/deleted-executable/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/deleted-executable/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/deleted-executable/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := pass-to-base.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/exec/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/exec/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/exec/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/exec/Makefile Wed Sep 4 00:46:25 2019
@@ -1,10 +1,8 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
all: a.out secondprog
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
secondprog:
$(MAKE) VPATH=$(VPATH) -f $(SRCDIR)/secondprog.mk
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/exec/secondprog.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/exec/secondprog.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/exec/secondprog.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/exec/secondprog.mk Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../make
-
CXX_SOURCES := secondprog.cpp
EXE = secondprog
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/fat_archives/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/fat_archives/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/fat_archives/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/fat_archives/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
SRCDIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))/
-
all: a.c clean
$(CC) -arch i386 -g -c $(SRCDIR)/a.c
ar -q liba-i386.a a.o
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-assert/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-assert/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-assert/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-assert/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-changed/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-changed/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-changed/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-changed/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-crashing/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-crashing/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-crashing/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-crashing/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS += -fomit-frame-pointer
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/inline-stepping/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/inline-stepping/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/inline-stepping/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/inline-stepping/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../make
-
CXX_SOURCES := calling.cpp
ifneq (,$(findstring icc,$(CC)))
CXXFLAGS += -debug inline-debug-info
endif
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/Makefile Wed Sep 4 00:46:25 2019
@@ -1,10 +1,8 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
all: a.out simple
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
simple:
$(MAKE) VPATH=$(VPATH) -f $(SRCDIR)/simple.mk
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/simple.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/simple.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/simple.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/simple.mk Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../make
-
C_SOURCES := simple.c
EXE = simple
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile Wed Sep 4 00:46:25 2019
@@ -1,12 +1,10 @@
-LEVEL := ../../make
-
LIB_PREFIX := loadunload_
LD_EXTRAS := -L. -l$(LIB_PREFIX)d
CXX_SOURCES := main.cpp
USE_LIBDL := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
a.out: lib_a lib_b lib_c lib_d hidden_lib_d install_name_tool
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/a.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/a.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/a.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/a.mk Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL := ../../make
-
LIB_PREFIX := loadunload_
LD_EXTRAS := -L. -l$(LIB_PREFIX)b
@@ -8,7 +6,7 @@ DYLIB_NAME := $(LIB_PREFIX)a
DYLIB_CXX_SOURCES := a.cpp
DYLIB_ONLY := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
$(DYLIB_FILENAME): lib_b
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/b.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/b.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/b.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/b.mk Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL := ../../make
-
LIB_PREFIX := loadunload_
DYLIB_NAME := $(LIB_PREFIX)b
DYLIB_CXX_SOURCES := b.cpp
DYLIB_ONLY := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/c.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/c.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/c.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/c.mk Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL := ../../make
-
LIB_PREFIX := loadunload_
DYLIB_NAME := $(LIB_PREFIX)c
DYLIB_CXX_SOURCES := c.cpp
DYLIB_ONLY := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/d.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/d.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/d.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/d.mk Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL := ../../make
-
LIB_PREFIX := loadunload_
DYLIB_EXECUTABLE_PATH := $(CURDIR)
@@ -8,4 +6,4 @@ DYLIB_NAME := $(LIB_PREFIX)d
DYLIB_CXX_SOURCES := d.cpp
DYLIB_ONLY := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/hidden/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/hidden/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/hidden/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/hidden/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL := ../../../make
-
LIB_PREFIX := loadunload_
DYLIB_NAME := $(LIB_PREFIX)d
DYLIB_CXX_SOURCES := d.cpp
DYLIB_ONLY := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_using_paths/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_using_paths/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_using_paths/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_using_paths/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL := ../../make
-
CXX_SOURCES := main.cpp
USE_LIBDL := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
all: hidden_lib a.out
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_using_paths/hidden/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_using_paths/hidden/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_using_paths/hidden/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_using_paths/hidden/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL := ../../../make
-
DYLIB_NAME := loadunload
DYLIB_CXX_SOURCES := d.cpp
DYLIB_ONLY := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/longjmp/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/longjmp/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/longjmp/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/longjmp/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory-region/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory-region/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory-region/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory-region/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
clean::
rm -rf $(wildcard *.o *.d *.dSYM)
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/cache/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/cache/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/cache/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/cache/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/find/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/find/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/find/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/find/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/read/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/read/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/read/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/read/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/mtc/simple/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/mtc/simple/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/mtc/simple/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/mtc/simple/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation -framework AppKit
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
DYLIB_CXX_SOURCES := plugin.cpp
DYLIB_NAME := plugin
DYLIB_ONLY := YES
MAKE_DSYM := NO
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/main.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/main.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/main.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/main.mk Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../make
-
CXX_SOURCES := main.cpp
ENABLE_THREADS := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/main.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/main.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/main.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/main.mk Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../../make
-
CXX_SOURCES := main.cpp
ENABLE_THREADS := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../make
-
DYLIB_NAME := unlikely_name
DYLIB_CXX_SOURCES := foo.cpp
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/process_group/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/process_group/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/process_group/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/process_group/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/process_save_core/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/process_save_core/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/process_save_core/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/process_save_core/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/ptr_refs/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/ptr_refs/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/ptr_refs/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/ptr_refs/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/recursion/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/recursion/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/recursion/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/recursion/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/rerun/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/rerun/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/rerun/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/rerun/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/return-value/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/return-value/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/return-value/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/return-value/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := call-func.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/set-data/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/set-data/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/set-data/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/set-data/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../make
-
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/raise/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/raise/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/raise/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/signal/raise/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/stats_api/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/stats_api/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/stats_api/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/stats_api/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../make
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../make
-
C_SOURCES := with-debug.c without-debug.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
without-debug.o: without-debug.c
$(CC) $(CFLAGS_NO_DEBUG) -c $<
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/step_scripted/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/step_scripted/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/step_scripted/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/step_scripted/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -g -O1 -glldb
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -g -O1 -glldb
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -g -O1 -glldb
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -g -O1 -glldb
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -g -O1 -glldb
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -g -O1 -glldb
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -g -O1 -glldb
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -g -O1 -glldb
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -g -O1 -glldb
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CXXFLAGS += -g -O1 -glldb
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/target-new-solib-notifications/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/target-new-solib-notifications/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/target-new-solib-notifications/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/target-new-solib-notifications/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/target_var/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/target_var/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/target_var/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/target_var/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../make
-
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
a.out: globals.ll
$(CC) $(CFLAGS) -g -c $^ -o globals.o
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
CXXFLAGS += -std=c++11
CXX_SOURCES := ParallelTask.cpp
ENABLE_THREADS := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
CXXFLAGS += -std=c++11
CXX_SOURCES := main.cpp
ENABLE_THREADS := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
ENABLE_THREADS := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
ENABLE_THREADS := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,2 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
ENABLE_THREADS := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
ENABLE_THREADS := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
ENABLE_THREADS := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/jump/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/jump/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/jump/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/jump/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp other.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/multi_break/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/multi_break/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/multi_break/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/multi_break/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
ENABLE_THREADS := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/num_threads/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/num_threads/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/num_threads/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/num_threads/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
ENABLE_THREADS := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/state/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/state/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/state/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/state/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,2 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/step_out/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/step_out/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/step_out/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/step_out/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
ENABLE_THREADS := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/step_until/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/step_until/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/step_until/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/step_until/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
ENABLE_THREADS := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
ENABLE_THREADS := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/basic/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/basic/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/basic/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/basic/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS := -fsanitize=thread -g
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
CFLAGS_EXTRAS := -fsanitize=thread -g
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/global_location/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/global_location/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/global_location/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/global_location/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS := -fsanitize=thread -g
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/multiple/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/multiple/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/multiple/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/multiple/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS := -fsanitize=thread -g
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS := -fsanitize=thread -g
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS := -fsanitize=thread -g
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tty/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/tty/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tty/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tty/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/type_completion/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/type_completion/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/type_completion/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/type_completion/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/type_lookup/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/type_lookup/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/type_lookup/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/type_lookup/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../make
-
OBJCXX_SOURCES := main.mm
CFLAGS_EXTRAS += -w
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/ubsan/basic/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/ubsan/basic/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/ubsan/basic/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/ubsan/basic/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS := -fsanitize=undefined -g
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS := -fsanitize=undefined -g
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
CFLAGS ?= -g -fomit-frame-pointer
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
CFLAGS ?= -g -Os
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/standard/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/standard/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/standard/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/unwind/standard/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1 @@
-LEVEL = ../../../make
-
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/value_md5_crash/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/value_md5_crash/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/value_md5_crash/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/value_md5_crash/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/var_path/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/var_path/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/var_path/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/var_path/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/issue_verification/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/issue_verification/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/issue_verification/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/issue_verification/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../make
CXX_SOURCES := inline_rerun_inferior.cpp
CXXFLAGS += -std=c++11
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/anonymous/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/anonymous/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/anonymous/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/anonymous/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/array_types/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/array_types/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/array_types/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/array_types/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/bitfields/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/bitfields/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/bitfields/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/bitfields/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/blocks/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/blocks/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/blocks/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/blocks/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS += -fblocks
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL := ../../../make
-
LD_EXTRAS := -L. -LOne -l$(LIB_PREFIX)One -LTwo -l$(LIB_PREFIX)Two
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
.PHONY:
a.out: lib_One lib_Two
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One.mk Wed Sep 4 00:46:25 2019
@@ -1,10 +1,8 @@
-LEVEL := ../../../make
-
DYLIB_NAME := One
DYLIB_C_SOURCES := One.c OneConstant.c
DYLIB_ONLY := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
OneConstant.o: OneConstant.c
$(CC) $(CFLAGS_NO_DEBUG) -c $< -o $@
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two.mk Wed Sep 4 00:46:25 2019
@@ -1,10 +1,8 @@
-LEVEL := ../../../make
-
DYLIB_NAME := Two
DYLIB_C_SOURCES := Two.c TwoConstant.c
DYLIB_ONLY := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
TwoConstant.o: TwoConstant.c
$(CC) $(CFLAGS_NO_DEBUG) -c $< -o $@
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/const_variables/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/const_variables/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/const_variables/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/const_variables/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c functions.c
CFLAGS_EXTRAS += -O3
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/enum_types/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/enum_types/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/enum_types/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/enum_types/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/find_struct_type/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/find_struct_type/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/find_struct_type/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/find_struct_type/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/forward/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/forward/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/forward/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/forward/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c foo.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/function_types/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/function_types/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/function_types/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/function_types/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/global_variables/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/global_variables/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/global_variables/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/global_variables/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
DYLIB_NAME := a
DYLIB_C_SOURCES := a.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/local_variables/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/local_variables/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/local_variables/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/local_variables/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS += -O1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/modules/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/modules/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/modules/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/modules/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/offsetof/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/offsetof/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/offsetof/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/offsetof/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/recurse/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/recurse/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/recurse/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/recurse/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/register_variables/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/register_variables/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/register_variables/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/register_variables/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
C_SOURCES := test.c
CFLAGS_EXTRAS += -O1 -D_FORTIFY_SOURCE=0
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/set_values/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/set_values/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/set_values/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/set_values/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/shared_lib/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/shared_lib/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/shared_lib/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/shared_lib/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
DYLIB_NAME := foo
DYLIB_C_SOURCES := foo.c
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
DYLIB_NAME := foo
DYLIB_C_SOURCES := foo.c
C_SOURCES := main.c
SPLIT_DEBUG_SYMBOLS = YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/step-target/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/step-target/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/step-target/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/step-target/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/stepping/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/stepping/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/stepping/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/stepping/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/strings/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/strings/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/strings/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/strings/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/struct_types/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/struct_types/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/struct_types/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/struct_types/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/tls_globals/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/tls_globals/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/tls_globals/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/tls_globals/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
DYLIB_NAME := a
@@ -7,4 +5,4 @@ DYLIB_C_SOURCES := a.c
ENABLE_THREADS := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/typedef/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/typedef/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/typedef/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/typedef/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/unicode/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/unicode/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/unicode/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/unicode/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS += -finput-charset=UTF-8 -fextended-identifiers -std=c99
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/unions/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/unions/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/unions/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/unions/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/vla/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/vla/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/vla/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/vla/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/auto/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/auto/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/auto/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/auto/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/bool/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/bool/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/bool/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/bool/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := nested.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
CXX_SOURCES = main.cpp a.cpp
CFLAGS_EXTRAS = $(MANDATORY_CXXMODULE_BUILD_CFLAGS)
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/call-function/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/call-function/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/call-function/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/call-function/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/chained-calls/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/chained-calls/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/chained-calls/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/chained-calls/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/char1632_t/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/char1632_t/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/char1632_t/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/char1632_t/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
CFLAGS :=-g -O0 -std=c++11
clean: OBJECTS+=$(wildcard main.d.*)
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/char8_t/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/char8_t/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/char8_t/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/char8_t/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
CFLAGS_EXTRAS := -std=c++2a -fchar8_t
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class_static/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class_static/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class_static/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class_static/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class_types/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class_types/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class_types/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class_types/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/const_this/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/const_this/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/const_this/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/const_this/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,6 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
CXXFLAGS += -std=c++11
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
cleanup:
rm -f Makefile *.d
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/diamond/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/diamond/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/diamond/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/diamond/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := pass-to-base.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/enum_types/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/enum_types/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/enum_types/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/enum_types/Makefile Wed Sep 4 00:46:25 2019
@@ -1,10 +1,8 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
CXXFLAGS += -std=c++11
clean: OBJECTS+=$(wildcard main.d.*)
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/exceptions/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/exceptions/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/exceptions/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/exceptions/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := exceptions.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/extern_c/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/extern_c/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/extern_c/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/extern_c/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/function_refs/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/function_refs/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/function_refs/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/function_refs/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/global_operators/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/global_operators/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/global_operators/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/global_operators/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/global_variables/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/global_variables/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/global_variables/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/global_variables/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
CXX_SOURCES = main.cpp
# CFLAGS_EXTRAS += $(MODULE_DEBUG_INFO_FLAGS)
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/gmodules/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/gmodules/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/gmodules/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/gmodules/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
PCH_CXX_SOURCE = pch.h
CXX_SOURCES = main.cpp
CFLAGS_EXTRAS += $(MODULE_DEBUG_INFO_FLAGS)
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES = main.cpp length.cpp a.cpp
CFLAGS_LIMIT = -c $(CXXFLAGS)
@@ -32,4 +30,4 @@ a.o: a.cpp
clean: OBJECTS += limit nolimit length_limit.o length_nolimit.o length_limit.dwo length_nolimit.dwo
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/inlines/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/inlines/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/inlines/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/inlines/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := inlines.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
CXX_SOURCES = main.cpp derived.cpp base.cpp
CFLAGS_EXTRAS += $(LIMIT_DEBUG_INFO_FLAGS)
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/llvm-style/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/llvm-style/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/llvm-style/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/llvm-style/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
\ No newline at end of file
+include Makefile.rules
\ No newline at end of file
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES = main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/modules-import/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/modules-import/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/modules-import/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/modules-import/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
CFLAGS_EXTRAS = $(MANDATORY_MODULE_BUILD_CFLAGS) -I$(BUILDDIR)/include
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp ns.cpp ns2.cpp ns3.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_conflicts/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_conflicts/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_conflicts/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_conflicts/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL := ../../../make
-
LD_EXTRAS := -L. -l$(LIB_PREFIX)a -l$(LIB_PREFIX)b
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
.PHONY:
a.out: lib_a lib_b
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/a.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/a.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/a.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/a.mk Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL := ../../../make
-
DYLIB_NAME := a
DYLIB_CXX_SOURCES := a.cpp
DYLIB_ONLY := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/b.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/b.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/b.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/b.mk Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL := ../../../make
-
DYLIB_NAME := b
DYLIB_CXX_SOURCES := b.cpp
DYLIB_ONLY := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/nsimport/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/nsimport/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/nsimport/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/nsimport/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/offsetof/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/offsetof/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/offsetof/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/offsetof/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/operator-overload/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/operator-overload/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/operator-overload/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/operator-overload/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
CXX_SOURCES = a.cpp b.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
a.o: a.cpp
$(CC) $(CFLAGS_NO_DEBUG) -c $< -o $@
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/operators/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/operators/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/operators/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/operators/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp static-a.cpp static-b.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
CXXFLAGS += -std=c++11
-include $(LEVEL)/Makefile.rules
\ No newline at end of file
+include Makefile.rules
\ No newline at end of file
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/scope/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/scope/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/scope/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/scope/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/signed_types/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/signed_types/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/signed_types/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/signed_types/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/static_members/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/static_members/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/static_members/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/static_members/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/static_methods/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/static_methods/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/static_methods/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/static_methods/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
CXXFLAGS += -std=c++11
USE_LIBCPP := 1
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/stl/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/stl/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/stl/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/stl/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
CFLAGS := -g -O0
clean: OBJECTS+=$(wildcard main.d.*)
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/symbols/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/symbols/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/symbols/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/symbols/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/template-function/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/template-function/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/template-function/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/template-function/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/template/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/template/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/template/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/template/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/this/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/this/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/this/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/this/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/type_lookup/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/type_lookup/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/type_lookup/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/type_lookup/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
CFLAGS := -g -O0 -std=c++11
clean: OBJECTS+=$(wildcard main.d.*)
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/unique-types/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/unique-types/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/unique-types/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/unique-types/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/virtual-overload/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/virtual-overload/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/virtual-overload/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/virtual-overload/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/virtual/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/virtual/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/virtual/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/virtual/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/wchar_t/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/wchar_t/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/wchar_t/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/wchar_t/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
CFLAGS := -g -O0
clean: OBJECTS+=$(wildcard main.d.*)
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/mixed/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/mixed/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/mixed/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/mixed/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../make
-
CXX_SOURCES := foo.cpp
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/blocks/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/blocks/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/blocks/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/blocks/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := ivars-in-blocks.m main.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
LD_EXTRAS = -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
all: a.out
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Test.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Test.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Test.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Test.mk Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
DYLIB_NAME := Test
DYLIB_ONLY := YES
CFLAGS_EXTRAS = -I$(SRCDIR)/..
@@ -7,4 +5,4 @@ LD_EXTRAS = -lobjc -framework Foundation
DYLIB_OBJC_SOURCES = Test/Test.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.mk Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
DYLIB_NAME := TestExt
DYLIB_ONLY := YES
CFLAGS_EXTRAS = -I$(SRCDIR)/..
@@ -7,4 +5,4 @@ LD_EXTRAS = -L. -lTest -lobjc -framework
DYLIB_OBJC_SOURCES = TestExt/TestExt.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/exceptions/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/exceptions/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/exceptions/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/exceptions/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
OBJCXX_SOURCES := main.mm
CFLAGS_EXTRAS += -w
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/forward-decl/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/forward-decl/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/forward-decl/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/forward-decl/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
DYLIB_NAME := Container
DYLIB_OBJC_SOURCES := Container.m
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/foundation/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/foundation/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/foundation/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/foundation/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m my-base.m
#OBJC_SOURCES := const-strings.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/global_ptrs/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/global_ptrs/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/global_ptrs/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/global_ptrs/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
DYLIB_NAME := InternalDefiner
DYLIB_OBJC_SOURCES := InternalDefiner.m
OBJC_SOURCES := main.m
LD_EXTRAS = -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CC ?= clang
ifeq "$(ARCH)" ""
ARCH = x86_64
@@ -25,4 +23,4 @@ aout:
clean::
rm -f myclass.o
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,5 @@
-LEVEL = ../../../make
OBJC_SOURCES := main.m
CFLAGS += $(MANDATORY_MODULE_BUILD_CFLAGS)
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-cache/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-cache/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-cache/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-cache/Makefile Wed Sep 4 00:46:25 2019
@@ -1,3 +1,2 @@
-LEVEL = ../../../make
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m myModule.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CFLAGS += $(MANDATORY_MODULE_BUILD_CFLAGS)
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
C_SOURCES := myModule.c
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CFLAGS += $(MANDATORY_MODULE_BUILD_CFLAGS) -I$(PWD)
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc++/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc%2B%2B/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc++/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc++/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJCXX_SOURCES := main.mm
LD_EXTRAS = -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
LD_EXTRAS = -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-checker/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-checker/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-checker/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-checker/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-class-method/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-class-method/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-class-method/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-class-method/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := class.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LD_EXTRAS = -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := dynamic-value.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := objc-ivar-offsets.m main.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
@@ -12,4 +10,4 @@ clean::
rm -f a.out.stripped
rm -rf a.out.stripped.dSYM
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-optimized/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-optimized/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-optimized/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-optimized/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
CFLAGS ?= -arch $(ARCH) -g -O2
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-property/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-property/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-property/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-property/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := static.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
@@ -13,4 +11,4 @@ clean::
rm -f a.out.stripped
rm -rf $(wildcard *.dSYM)
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-static-method/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-static-method/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-static-method/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-static-method/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := static.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-stepping/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-stepping/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-stepping/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-stepping/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := stepping-tests.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := test.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := test.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-super/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-super/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-super/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-super/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := class.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/orderedset/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/orderedset/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/orderedset/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/orderedset/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/print-obj/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/print-obj/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/print-obj/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/print-obj/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := blocked.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/ptr_refs/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/ptr_refs/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/ptr_refs/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/ptr_refs/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/radar-9691614/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/radar-9691614/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/radar-9691614/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/radar-9691614/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
ifneq (,$(findstring arm,$(ARCH)))
LD_EXTRAS = -framework Foundation -framework UIKit
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/real-definition/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/real-definition/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/real-definition/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/real-definition/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := Bar.m Foo.m main.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/sample/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/sample/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/sample/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/sample/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/self/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/self/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/self/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/self/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
LD_EXTRAS ?= -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
OBJC_SOURCES := main.m
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,5 @@
-LEVEL = ../../../make
OBJCXX_SOURCES := main.mm myobject.mm
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
CFLAGS_NO_DEBUG =
ifeq "$(OS)" "Darwin"
CFLAGS_NO_DEBUG += -arch $(ARCH)
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/cxx-bridged-po/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/cxx-bridged-po/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/cxx-bridged-po/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/cxx-bridged-po/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJCXX_SOURCES := main.mm
LDFLAGS = $(CFLAGS) -lobjc -framework CoreFoundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJCXX_SOURCES := main.mm
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/sample/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/sample/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/sample/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objcxx/sample/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
OBJCXX_SOURCES := main.mm
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/linux/add-symbols/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/linux/add-symbols/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/linux/add-symbols/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/linux/add-symbols/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../make
CXX_SOURCES := main.cpp
LD_EXTRAS += -Wl,--build-id=none
@@ -10,4 +9,4 @@ stripped.out : a.out
clean::
$(RM) stripped.out
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/linux/builtin_trap/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/linux/builtin_trap/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/linux/builtin_trap/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/linux/builtin_trap/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL := ../../make
-
C_SOURCES := a.c b.c
a.o: CFLAGS_EXTRAS += -gsplit-dwarf
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
.PHONY: clean
clean::
Modified: lldb/trunk/packages/Python/lldbsuite/test/linux/sepdebugsymlink/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/linux/sepdebugsymlink/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/linux/sepdebugsymlink/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/linux/sepdebugsymlink/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../make
C_SOURCES := main.c
all: dirsymlink
@@ -17,4 +16,4 @@ dirsymlink: dirreal
clean::
$(RM) -r dirreal dirsymlink
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
ENABLE_THREADS := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/lldbinline.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lldbinline.py?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lldbinline.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lldbinline.py Wed Sep 4 00:46:25 2019
@@ -101,11 +101,6 @@ class InlineTest(TestBase):
makefile = open(makefilePath, 'w+')
- level = os.sep.join(
- [".."] * len(self.mydir.split(os.sep))) + os.sep + "make"
-
- makefile.write("LEVEL = " + level + "\n")
-
for t in list(categories.keys()):
line = t + " := " + " ".join(categories[t])
makefile.write(line + "\n")
@@ -118,7 +113,7 @@ class InlineTest(TestBase):
if ('CXX_SOURCES' in list(categories.keys())):
makefile.write("CXXFLAGS += -std=c++11\n")
- makefile.write("include $(LEVEL)/Makefile.rules\n")
+ makefile.write("include Makefile.rules\n")
makefile.write("\ncleanup:\n\trm -f Makefile *.d\n\n")
makefile.flush()
makefile.close()
Modified: lldb/trunk/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
# Make an archive that has two object files with the same name, but
@@ -14,7 +12,7 @@ libfoo.a: a.c sub1/a.c
$(AR) $(ARFLAGS) $@ a.o sub1/a.o
rm a.o sub1/a.o
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
# Needs to come after include
OBJECTS += libfoo.a
Modified: lldb/trunk/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
SRCDIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))/
-
CC ?= clang
ifeq "$(ARCH)" ""
Modified: lldb/trunk/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
SRCDIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))/
-
CC ?= clang
ifeq "$(ARCH)" ""
Modified: lldb/trunk/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,4 @@
SRCDIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))/
-
CC ?= clang
ifeq "$(ARCH)" ""
Modified: lldb/trunk/packages/Python/lldbsuite/test/macosx/function-starts/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/macosx/function-starts/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/macosx/function-starts/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/macosx/function-starts/Makefile Wed Sep 4 00:46:25 2019
@@ -1,10 +1,8 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
EXE := StripMe
MAKE_DSYM := NO
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
main.o: main.cpp
$(CC) $(CFLAGS_NO_DEBUG) -c $< -o $@
Modified: lldb/trunk/packages/Python/lldbsuite/test/macosx/indirect_symbol/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/macosx/indirect_symbol/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/macosx/indirect_symbol/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/macosx/indirect_symbol/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../make
-
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LIB_PREFIX := lib
Modified: lldb/trunk/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
MAKE_DSYM := NO
C_SOURCES := main.c
@@ -12,4 +10,4 @@ create-empty-corefile:
clean::
$(MAKE) -f create-empty-corefile.mk clean
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/create-empty-corefile.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/create-empty-corefile.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/create-empty-corefile.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/create-empty-corefile.mk Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
MAKE_DSYM := NO
CXX_SOURCES := create-empty-corefile.cpp
EXE = create-empty-corefile
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/macosx/nslog/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/macosx/nslog/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/macosx/nslog/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/macosx/nslog/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../make
-
OBJC_SOURCES := main.m
LD_EXTRAS = -framework Foundation
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/macosx/order/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/macosx/order/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/macosx/order/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/macosx/order/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
LDFLAGS = $(CFLAGS) -Xlinker -order_file -Xlinker $(SRCDIR)/order-file
MAKE_DSYM := NO
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/macosx/queues/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/macosx/queues/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/macosx/queues/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/macosx/queues/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/macosx/safe-to-func-call/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/macosx/safe-to-func-call/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/macosx/safe-to-func-call/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/macosx/safe-to-func-call/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/macosx/thread-names/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/macosx/thread-names/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/macosx/thread-names/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/macosx/thread-names/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/macosx/universal/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/macosx/universal/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/macosx/universal/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/macosx/universal/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL := ../../make
-
EXE := testit
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
all: testit
Modified: lldb/trunk/packages/Python/lldbsuite/test/plugins/builder_base.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/plugins/builder_base.py?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/plugins/builder_base.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/plugins/builder_base.py Wed Sep 4 00:46:25 2019
@@ -75,6 +75,7 @@ def getMake(test_subdir, test_name):
"VPATH="+src_dir,
"-C", build_dir,
"-I", src_dir,
+ "-I", os.path.join(lldb_test, "make"),
"-f", makefile]
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/breakpoint/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/breakpoint/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/breakpoint/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/breakpoint/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/class_members/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/class_members/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/class_members/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/class_members/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
OBJCXX_SOURCES := main.mm
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/event/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/event/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/event/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/event/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/findvalue_duplist/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/findvalue_duplist/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/findvalue_duplist/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/findvalue_duplist/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
# Clean renamed executable on 'make clean'
clean: OBJECTS+=no_synth
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/formatters/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/formatters/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/formatters/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/formatters/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
# Clean renamed executable on 'make clean'
clean: OBJECTS+=no_synth
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/frame/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/frame/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/frame/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/frame/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/frame/get-variables/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/frame/get-variables/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/frame/get-variables/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/frame/get-variables/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/frame/inlines/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/frame/inlines/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/frame/inlines/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/frame/inlines/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
C_SOURCES := inlines.c
ifneq (,$(findstring icc,$(CC)))
CFLAGS += -debug inline-debug-info
endif
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/function_symbol/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/function_symbol/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/function_symbol/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/function_symbol/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/hello_world/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/hello_world/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/hello_world/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/hello_world/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
# See TestHelloWorld.py, which specifies the executable name with a dictionary.
EXE := hello_world
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/interpreter/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/interpreter/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/interpreter/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/interpreter/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/lldbutil/frame/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/lldbutil/frame/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/lldbutil/frame/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/lldbutil/frame/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
MAKE_DSYM :=NO
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/lldbutil/iter/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/lldbutil/iter/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/lldbutil/iter/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/lldbutil/iter/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
CFLAGS_EXTRAS += -D__STDC_LIMIT_MACROS
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp
MAKE_DSYM := NO
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/lldbutil/process/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/lldbutil/process/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/lldbutil/process/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/lldbutil/process/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
CFLAGS_EXTRAS += -D__STDC_LIMIT_MACROS
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp
MAKE_DSYM :=NO
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/module_section/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/module_section/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/module_section/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/module_section/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../make
-
CFLAGS_EXTRAS += -D__STDC_LIMIT_MACROS
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp b.cpp c.cpp
MAKE_DSYM :=NO
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/name_lookup/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/name_lookup/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/name_lookup/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/name_lookup/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/objc_type/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/objc_type/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/objc_type/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/objc_type/Makefile Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../make
-
OBJC_SOURCES := main.m
CFLAGS_EXTRAS += -w
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
LDFLAGS += -framework Foundation
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/process/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/process/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/process/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/process/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/process/io/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/process/io/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/process/io/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/process/io/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
EXE := process_io
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
EXE := read-mem-cstring
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/rdar-12481949/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/rdar-12481949/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/rdar-12481949/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/rdar-12481949/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/sbdata/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/sbdata/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/sbdata/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/sbdata/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/Makefile Wed Sep 4 00:46:25 2019
@@ -1,4 +1,3 @@
-LEVEL = ../../make
CXX_SOURCES := main.cpp
CXXFLAGS += -std=c++11
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/sbvalue_persist/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/sbvalue_persist/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/sbvalue_persist/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/sbvalue_persist/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
# Clean renamed executable on 'make clean'
clean: OBJECTS+=no_synth
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/section/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/section/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/section/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/section/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/signals/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/signals/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/signals/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/signals/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/symbol-context/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/symbol-context/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/symbol-context/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/symbol-context/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := file1.cpp file2.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/target/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/target/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/target/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/target/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/thread/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/thread/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/thread/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/thread/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES ?= main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/type/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/type/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/type/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/type/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/value/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/value/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/value/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/value/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/value/change_values/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/value/change_values/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/value/change_values/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/value/change_values/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/value/empty_class/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/value/empty_class/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/value/empty_class/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/value/empty_class/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/value/linked_list/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/value/linked_list/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/value/linked_list/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/value/linked_list/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/value_var_update/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/value_var_update/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/value_var_update/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/value_var_update/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS += -std=c99
# See TestHelloWorld.py, which specifies the executable name with a dictionary.
EXE := hello_world
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/watchpoint/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/watchpoint/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/watchpoint/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/watchpoint/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/watchpoint/condition/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/watchpoint/condition/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/watchpoint/condition/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/watchpoint/condition/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/sample_test/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/sample_test/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/sample_test/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/sample_test/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../make
-
C_SOURCES := main.c
CFLAGS_EXTRAS += -std=c99
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/source-manager/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/source-manager/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/source-manager/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/source-manager/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../make
-
C_SOURCES := main-copy.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
# Copy file into the build folder to enable the test to modify it.
main-copy.c: main.c
Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../make
-
override CFLAGS_EXTRAS += -D__STDC_LIMIT_MACROS -D__STDC_FORMAT_MACROS
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp
MAKE_DSYM :=NO
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/Makefile Wed Sep 4 00:46:25 2019
@@ -1,8 +1,6 @@
-LEVEL = ../../../make
-
CFLAGS_EXTRAS += -D__STDC_LIMIT_MACROS -D__STDC_FORMAT_MACROS -std=c++11
# LD_EXTRAS := -lpthread
CXX_SOURCES := main.cpp
MAKE_DSYM :=NO
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/Makefile Wed Sep 4 00:46:25 2019
@@ -1,12 +1,10 @@
-LEVEL = ../../../make
-
LIB_PREFIX := svr4lib
LD_EXTRAS := -L. -l$(LIB_PREFIX)_a -l$(LIB_PREFIX)_b\"
CXX_SOURCES := main.cpp
USE_LIBDL := 1
MAKE_DSYM := NO
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
a.out: $(LIB_PREFIX)_a $(LIB_PREFIX)_b_quote
Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/svr4lib_a.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/svr4lib_a.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/svr4lib_a.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/svr4lib_a.mk Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
LIB_PREFIX := svr4lib
DYLIB_NAME := $(LIB_PREFIX)_a
DYLIB_CXX_SOURCES := $(LIB_PREFIX)_a.cpp
DYLIB_ONLY := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/svr4lib_b_quote.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/svr4lib_b_quote.mk?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/svr4lib_b_quote.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/svr4lib_b_quote.mk Wed Sep 4 00:46:25 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
LIB_PREFIX := svr4lib
DYLIB_NAME := $(LIB_PREFIX)_b\"
DYLIB_CXX_SOURCES := $(LIB_PREFIX)_b_quote.cpp
DYLIB_ONLY := YES
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/register-reading/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/register-reading/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/register-reading/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/register-reading/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/Makefile Wed Sep 4 00:46:25 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
C_SOURCES := main.c
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/step/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/step/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/step/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/step/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/Makefile Wed Sep 4 00:46:25 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
CXX_SOURCES := main.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/types/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/types/Makefile?rev=370845&r1=370844&r2=370845&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/types/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/types/Makefile Wed Sep 4 00:46:25 2019
@@ -1,7 +1,5 @@
-LEVEL = ../make
-
# Example:
#
# CXX_SOURCES := int.cpp
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
More information about the lldb-commits
mailing list