From 9e8ec48b308eb221da728d5adad2fe6ff7e45f7c Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Mon, 15 Jun 2009 21:50:04 +0000 Subject: [PATCH] Moved dwarf related code into dwarf/ subdirectory. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31064 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/debugger/Jamfile | 16 +++++++++------- src/apps/debugger/{ => dwarf}/AttributeValue.cpp | 0 src/apps/debugger/{ => dwarf}/AttributeValue.h | 0 src/apps/debugger/{ => dwarf}/DataReader.h | 0 .../debugger/{ => dwarf}/DebugInfoEntries.cpp | 0 src/apps/debugger/{ => dwarf}/DebugInfoEntries.h | 0 src/apps/debugger/{ => dwarf}/DebugInfoEntry.cpp | 0 src/apps/debugger/{ => dwarf}/DebugInfoEntry.h | 0 src/apps/debugger/{ => dwarf}/DwarfManager.cpp | 0 src/apps/debugger/{ => dwarf}/DwarfManager.h | 0 .../debugger/{ => dwarf}/SourceLanguageInfo.cpp | 0 .../debugger/{ => dwarf}/SourceLanguageInfo.h | 0 .../debugger/{ => dwarf}/attribute_classes.cpp | 0 .../debugger/{ => dwarf}/attribute_classes.h | 0 src/apps/debugger/{ => dwarf}/dwarf.h | 0 src/apps/debugger/{ => dwarf}/tag_names.cpp | 0 src/apps/debugger/{ => dwarf}/tag_names.h | 0 src/apps/debugger/{ => dwarf}/types.h | 0 18 files changed, 9 insertions(+), 7 deletions(-) rename src/apps/debugger/{ => dwarf}/AttributeValue.cpp (100%) rename src/apps/debugger/{ => dwarf}/AttributeValue.h (100%) rename src/apps/debugger/{ => dwarf}/DataReader.h (100%) rename src/apps/debugger/{ => dwarf}/DebugInfoEntries.cpp (100%) rename src/apps/debugger/{ => dwarf}/DebugInfoEntries.h (100%) rename src/apps/debugger/{ => dwarf}/DebugInfoEntry.cpp (100%) rename src/apps/debugger/{ => dwarf}/DebugInfoEntry.h (100%) rename src/apps/debugger/{ => dwarf}/DwarfManager.cpp (100%) rename src/apps/debugger/{ => dwarf}/DwarfManager.h (100%) rename src/apps/debugger/{ => dwarf}/SourceLanguageInfo.cpp (100%) rename src/apps/debugger/{ => dwarf}/SourceLanguageInfo.h (100%) rename src/apps/debugger/{ => dwarf}/attribute_classes.cpp (100%) rename src/apps/debugger/{ => dwarf}/attribute_classes.h (100%) rename src/apps/debugger/{ => dwarf}/dwarf.h (100%) rename src/apps/debugger/{ => dwarf}/tag_names.cpp (100%) rename src/apps/debugger/{ => dwarf}/tag_names.h (100%) rename src/apps/debugger/{ => dwarf}/types.h (100%) diff --git a/src/apps/debugger/Jamfile b/src/apps/debugger/Jamfile index b9cdfbd723..2629ec2bbd 100644 --- a/src/apps/debugger/Jamfile +++ b/src/apps/debugger/Jamfile @@ -7,15 +7,17 @@ UsePrivateHeaders kernel shared ; UsePrivateSystemHeaders ; Application Debugger : - attribute_classes.cpp - AttributeValue.cpp debugger.cpp - DebugInfoEntries.cpp - DebugInfoEntry.cpp - DwarfManager.cpp ElfFile.cpp - SourceLanguageInfo.cpp - tag_names.cpp + +# DWARF +# attribute_classes.cpp +# AttributeValue.cpp +# DebugInfoEntries.cpp +# DebugInfoEntry.cpp +# DwarfManager.cpp +# SourceLanguageInfo.cpp +3 tag_names.cpp : $(TARGET_LIBSUPC++) ; diff --git a/src/apps/debugger/AttributeValue.cpp b/src/apps/debugger/dwarf/AttributeValue.cpp similarity index 100% rename from src/apps/debugger/AttributeValue.cpp rename to src/apps/debugger/dwarf/AttributeValue.cpp diff --git a/src/apps/debugger/AttributeValue.h b/src/apps/debugger/dwarf/AttributeValue.h similarity index 100% rename from src/apps/debugger/AttributeValue.h rename to src/apps/debugger/dwarf/AttributeValue.h diff --git a/src/apps/debugger/DataReader.h b/src/apps/debugger/dwarf/DataReader.h similarity index 100% rename from src/apps/debugger/DataReader.h rename to src/apps/debugger/dwarf/DataReader.h diff --git a/src/apps/debugger/DebugInfoEntries.cpp b/src/apps/debugger/dwarf/DebugInfoEntries.cpp similarity index 100% rename from src/apps/debugger/DebugInfoEntries.cpp rename to src/apps/debugger/dwarf/DebugInfoEntries.cpp diff --git a/src/apps/debugger/DebugInfoEntries.h b/src/apps/debugger/dwarf/DebugInfoEntries.h similarity index 100% rename from src/apps/debugger/DebugInfoEntries.h rename to src/apps/debugger/dwarf/DebugInfoEntries.h diff --git a/src/apps/debugger/DebugInfoEntry.cpp b/src/apps/debugger/dwarf/DebugInfoEntry.cpp similarity index 100% rename from src/apps/debugger/DebugInfoEntry.cpp rename to src/apps/debugger/dwarf/DebugInfoEntry.cpp diff --git a/src/apps/debugger/DebugInfoEntry.h b/src/apps/debugger/dwarf/DebugInfoEntry.h similarity index 100% rename from src/apps/debugger/DebugInfoEntry.h rename to src/apps/debugger/dwarf/DebugInfoEntry.h diff --git a/src/apps/debugger/DwarfManager.cpp b/src/apps/debugger/dwarf/DwarfManager.cpp similarity index 100% rename from src/apps/debugger/DwarfManager.cpp rename to src/apps/debugger/dwarf/DwarfManager.cpp diff --git a/src/apps/debugger/DwarfManager.h b/src/apps/debugger/dwarf/DwarfManager.h similarity index 100% rename from src/apps/debugger/DwarfManager.h rename to src/apps/debugger/dwarf/DwarfManager.h diff --git a/src/apps/debugger/SourceLanguageInfo.cpp b/src/apps/debugger/dwarf/SourceLanguageInfo.cpp similarity index 100% rename from src/apps/debugger/SourceLanguageInfo.cpp rename to src/apps/debugger/dwarf/SourceLanguageInfo.cpp diff --git a/src/apps/debugger/SourceLanguageInfo.h b/src/apps/debugger/dwarf/SourceLanguageInfo.h similarity index 100% rename from src/apps/debugger/SourceLanguageInfo.h rename to src/apps/debugger/dwarf/SourceLanguageInfo.h diff --git a/src/apps/debugger/attribute_classes.cpp b/src/apps/debugger/dwarf/attribute_classes.cpp similarity index 100% rename from src/apps/debugger/attribute_classes.cpp rename to src/apps/debugger/dwarf/attribute_classes.cpp diff --git a/src/apps/debugger/attribute_classes.h b/src/apps/debugger/dwarf/attribute_classes.h similarity index 100% rename from src/apps/debugger/attribute_classes.h rename to src/apps/debugger/dwarf/attribute_classes.h diff --git a/src/apps/debugger/dwarf.h b/src/apps/debugger/dwarf/dwarf.h similarity index 100% rename from src/apps/debugger/dwarf.h rename to src/apps/debugger/dwarf/dwarf.h diff --git a/src/apps/debugger/tag_names.cpp b/src/apps/debugger/dwarf/tag_names.cpp similarity index 100% rename from src/apps/debugger/tag_names.cpp rename to src/apps/debugger/dwarf/tag_names.cpp diff --git a/src/apps/debugger/tag_names.h b/src/apps/debugger/dwarf/tag_names.h similarity index 100% rename from src/apps/debugger/tag_names.h rename to src/apps/debugger/dwarf/tag_names.h diff --git a/src/apps/debugger/types.h b/src/apps/debugger/dwarf/types.h similarity index 100% rename from src/apps/debugger/types.h rename to src/apps/debugger/dwarf/types.h