aboutsummaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2015-03-26 20:09:47 +0000
committerRui Ueyama <ruiu@google.com>2015-03-26 20:09:47 +0000
commit6ea1959925714426da119187fcf580f2cb10f35f (patch)
tree55eb1f9302974ed67e05b236edbdee2237fdb4ab /unittests
parentce6bb71403a7daed8d6f29c3e1f7c161f011ca55 (diff)
downloadlld-6ea1959925714426da119187fcf580f2cb10f35f.tar.gz
Remove Makefiles.
Most developers prefer to not have them, and we agreed to remove them from LLD. http://lists.cs.uiuc.edu/pipermail/llvmdev/2015-March/083368.html git-svn-id: https://llvm.org/svn/llvm-project/lld/trunk@233313 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/CoreTests/Makefile14
-rw-r--r--unittests/DriverTests/Makefile20
-rw-r--r--unittests/Makefile31
3 files changed, 0 insertions, 65 deletions
diff --git a/unittests/CoreTests/Makefile b/unittests/CoreTests/Makefile
deleted file mode 100644
index 366df01a0..000000000
--- a/unittests/CoreTests/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-##===- unittests/CoreTests/Makefile ----------------------------*- Makefile -*-===##
-#
-# The LLVM Compiler Infrastructure
-#
-# This file is distributed under the University of Illinois Open Source
-# License. See LICENSE.TXT for details.
-#
-##===----------------------------------------------------------------------===##
-
-LLD_LEVEL = ../..
-TESTNAME = CoreTest
-LLVMLIBS = gtest.a LLVMOption.a LLVMSupport.a
-
-include $(LLD_LEVEL)/unittests/Makefile
diff --git a/unittests/DriverTests/Makefile b/unittests/DriverTests/Makefile
deleted file mode 100644
index ae97fb01a..000000000
--- a/unittests/DriverTests/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-##===---- unittests/DriverTests/Makefile ----------------*- Makefile -*-===##
-#
-# The LLVM Compiler Infrastructure
-#
-# This file is distributed under the University of Illinois Open Source
-# License. See LICENSE.TXT for details.
-#
-##===-------------------------------------------------------------------===##
-
-LLD_LEVEL = ../..
-TESTNAME = DriverTests
-USEDLIBS = lldDriver.a lldConfig.a \
- lldELF.a lldMachO.a lldPECOFF.a \
- lldCore.a lldNative.a lldReaderWriter.a \
- lldHexagonELFTarget.a lldMipsELFTarget.a \
- lldX86ELFTarget.a lldExampleSubTarget.a lldX86_64ELFTarget.a \
- lldYAML.a lldAArch64ELFTarget.a lldARMELFTarget.a \
- LLVMObject.a LLVMMCParser.a LLVMMC.a LLVMBitReader.a \
- LLVMCore.a LLVMOption.a LLVMSupport.a
-include $(LLD_LEVEL)/unittests/Makefile
diff --git a/unittests/Makefile b/unittests/Makefile
deleted file mode 100644
index 0fbb17d48..000000000
--- a/unittests/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-##===- unittests/Makefile ----------------------------------*- Makefile -*-===##
-#
-# The LLVM Compiler Infrastructure
-#
-# This file is distributed under the University of Illinois Open Source
-# License. See LICENSE.TXT for details.
-#
-##===----------------------------------------------------------------------===##
-
-# If LLD_LEVEL is not set, then we are the top-level Makefile. Otherwise, we
-# are being included from a subdirectory makefile.
-
-ifndef LLD_LEVEL
-
-IS_UNITTEST_LEVEL := 1
-LLD_LEVEL := ..
-
-PARALLEL_DIRS = CoreTests DriverTests
-
-include $(LLD_LEVEL)/../../Makefile.config
-
-endif # LLD_LEVEL
-
-include $(LLD_LEVEL)/Makefile
-
-ifndef IS_UNITTEST_LEVEL
-
-MAKEFILE_UNITTEST_NO_INCLUDE_COMMON := 1
-include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest
-
-endif # IS_UNITTEST_LEVEL