[Lldb-commits] [lldb] r371738 - [lldb][NFC] Simplify makefiles also for breakpoint tests

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Thu Sep 12 07:22:00 PDT 2019


Author: teemperor
Date: Thu Sep 12 07:21:59 2019
New Revision: 371738

URL: http://llvm.org/viewvc/llvm-project?rev=371738&view=rev
Log:
[lldb][NFC] Simplify makefiles also for breakpoint tests

These tests were temporarily missing when the big Makefile
simplification patch landed, so this just applies the same change
to these tests.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/Makefile

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/Makefile Thu Sep 12 07:21:59 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/functionalities/breakpoint/auto_continue/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/Makefile Thu Sep 12 07:21:59 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/functionalities/breakpoint/breakpoint_by_line_and_column/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/Makefile Thu Sep 12 07:21:59 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
 C_SOURCES := main.c
 CFLAGS_EXTRAS += -std=c99 -gcolumn-info
 
-include $(LEVEL)/Makefile.rules
+include Makefile.rules

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/Makefile Thu Sep 12 07:21:59 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/functionalities/breakpoint/breakpoint_conditions/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/Makefile Thu Sep 12 07:21:59 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/functionalities/breakpoint/breakpoint_hit_count/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/Makefile Thu Sep 12 07:21:59 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/breakpoint/breakpoint_ids/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/Makefile Thu Sep 12 07:21:59 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
 CXX_SOURCES := main.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/breakpoint/breakpoint_ignore_count/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/Makefile Thu Sep 12 07:21:59 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/breakpoint/breakpoint_in_delayslot/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/Makefile Thu Sep 12 07:21:59 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/functionalities/breakpoint/breakpoint_language/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/Makefile Thu Sep 12 07:21:59 2019
@@ -1,6 +1,4 @@
-LEVEL = ../../../make
-
 C_SOURCES := a.c
 CXX_SOURCES := main.cpp b.cpp
 
-include $(LEVEL)/Makefile.rules
+include Makefile.rules

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/Makefile Thu Sep 12 07:21:59 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
 C_SOURCES := main.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/functionalities/breakpoint/breakpoint_names/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/Makefile Thu Sep 12 07:21:59 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/breakpoint/breakpoint_options/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/Makefile Thu Sep 12 07:21:59 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/functionalities/breakpoint/breakpoint_set_restart/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/Makefile Thu Sep 12 07:21:59 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/breakpoint/comp_dir_symlink/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/Makefile Thu Sep 12 07:21:59 2019
@@ -1,10 +1,8 @@
-LEVEL = ../../../make
-
 CXX_SOURCES := relative.cpp
 
 EXE := CompDirSymLink
 
-include $(LEVEL)/Makefile.rules
+include Makefile.rules
 
 # Force relative filenames by copying it into the build directory.
 relative.cpp: main.cpp

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/Makefile Thu Sep 12 07:21:59 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
 CXX_SOURCES := main.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/breakpoint/cpp/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/Makefile Thu Sep 12 07:21:59 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
 CXX_SOURCES := main.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/breakpoint/cpp_exception/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/Makefile Thu Sep 12 07:21:59 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/breakpoint/debugbreak/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/Makefile Thu Sep 12 07:21:59 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/breakpoint/dummy_target_breakpoints/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/Makefile Thu Sep 12 07:21:59 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
 C_SOURCES := main.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/functionalities/breakpoint/global_constructor/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/Makefile Thu Sep 12 07:21:59 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
 DYLIB_NAME := foo
 DYLIB_CXX_SOURCES := foo.cpp
 CXX_SOURCES := main.cpp
 
-include $(LEVEL)/Makefile.rules
+include Makefile.rules

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/Makefile Thu Sep 12 07:21:59 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/functionalities/breakpoint/inlined_breakpoints/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/Makefile Thu Sep 12 07:21:59 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
 CXX_SOURCES := int.cpp
 
-include $(LEVEL)/Makefile.rules
+include Makefile.rules

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/Makefile Thu Sep 12 07:21:59 2019
@@ -1,7 +1,5 @@
-LEVEL = ../../../make
-
 DYLIB_NAME := foo
 DYLIB_CXX_SOURCES := foo.cpp
 CXX_SOURCES := main.cpp
 
-include $(LEVEL)/Makefile.rules
+include Makefile.rules

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/Makefile Thu Sep 12 07:21:59 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/breakpoint/require_hw_breakpoints/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/Makefile Thu Sep 12 07:21:59 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
 C_SOURCES := main.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/functionalities/breakpoint/scripted_bkpt/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/Makefile Thu Sep 12 07:21:59 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/functionalities/breakpoint/serialize/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/Makefile Thu Sep 12 07:21:59 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/breakpoint/source_regexp/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/Makefile Thu Sep 12 07:21:59 2019
@@ -1,5 +1,3 @@
-LEVEL = ../../../make
-
 C_SOURCES := main.c a.c
 
-include $(LEVEL)/Makefile.rules
+include Makefile.rules

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/Makefile?rev=371738&r1=371737&r2=371738&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/Makefile Thu Sep 12 07:21:59 2019
@@ -1,9 +1,7 @@
-LEVEL = ../../../make
-
 CXX_SOURCES := main.cpp
 
 ifneq (,$(findstring icc,$(CC)))
     CXXFLAGS += -debug inline-debug-info
 endif
 
-include $(LEVEL)/Makefile.rules
+include Makefile.rules




More information about the lldb-commits mailing list