From b5adb212405905aab3cb037e8316ec04c72ec74d Mon Sep 17 00:00:00 2001 From: Simon Atanasyan Date: Tue, 29 Jul 2014 18:28:16 +0000 Subject: [PATCH] Install the `obj2yaml` and `yaml2obj` utilities together with other LLVM tools. llvm-svn: 214191 --- llvm/tools/obj2yaml/CMakeLists.txt | 2 +- llvm/tools/obj2yaml/Makefile | 3 --- llvm/tools/yaml2obj/CMakeLists.txt | 2 +- llvm/tools/yaml2obj/Makefile | 3 --- 4 files changed, 2 insertions(+), 8 deletions(-) diff --git a/llvm/tools/obj2yaml/CMakeLists.txt b/llvm/tools/obj2yaml/CMakeLists.txt index f167ed5f6e87..3cdac5c74875 100644 --- a/llvm/tools/obj2yaml/CMakeLists.txt +++ b/llvm/tools/obj2yaml/CMakeLists.txt @@ -3,6 +3,6 @@ set(LLVM_LINK_COMPONENTS Support ) -add_llvm_utility(obj2yaml +add_llvm_tool(obj2yaml obj2yaml.cpp coff2yaml.cpp elf2yaml.cpp Error.cpp ) diff --git a/llvm/tools/obj2yaml/Makefile b/llvm/tools/obj2yaml/Makefile index 95f393ddd6f4..6cbef6998dc6 100644 --- a/llvm/tools/obj2yaml/Makefile +++ b/llvm/tools/obj2yaml/Makefile @@ -14,7 +14,4 @@ LINK_COMPONENTS := object # This tool has no plugins, optimize startup time. TOOL_NO_EXPORTS = 1 -# Don't install this utility -NO_INSTALL = 1 - include $(LEVEL)/Makefile.common diff --git a/llvm/tools/yaml2obj/CMakeLists.txt b/llvm/tools/yaml2obj/CMakeLists.txt index 78e92a0680fe..52e9df4d766a 100644 --- a/llvm/tools/yaml2obj/CMakeLists.txt +++ b/llvm/tools/yaml2obj/CMakeLists.txt @@ -4,7 +4,7 @@ set(LLVM_LINK_COMPONENTS Support ) -add_llvm_utility(yaml2obj +add_llvm_tool(yaml2obj yaml2obj.cpp yaml2coff.cpp yaml2elf.cpp diff --git a/llvm/tools/yaml2obj/Makefile b/llvm/tools/yaml2obj/Makefile index 88017954087a..912f0e31ae7c 100644 --- a/llvm/tools/yaml2obj/Makefile +++ b/llvm/tools/yaml2obj/Makefile @@ -14,7 +14,4 @@ LINK_COMPONENTS := object # This tool has no plugins, optimize startup time. TOOL_NO_EXPORTS = 1 -# Don't install this utility -NO_INSTALL = 1 - include $(LEVEL)/Makefile.common