diff options
author | Iain Sandoe <iain@codesourcery.com> | 2014-06-04 09:54:07 +0000 |
---|---|---|
committer | Iain Sandoe <iain@codesourcery.com> | 2014-06-04 09:54:07 +0000 |
commit | c4d9bedcfcba1e2f80ead1947abfc216305bfd34 (patch) | |
tree | 307f097ca8e3d00a92d446dfeb13f65270f69f99 /lld/unittests/DriverTests | |
parent | d2851616750afe6dc37835bcf00ddc53b5b9a3b6 (diff) | |
download | bcm5719-llvm-c4d9bedcfcba1e2f80ead1947abfc216305bfd34.tar.gz bcm5719-llvm-c4d9bedcfcba1e2f80ead1947abfc216305bfd34.zip |
Initial set of Makefiles
This provides support for the autoconfing & make build style.
The format, style and implementation follows that used within the llvm and clang projects.
TODO: implement out-of-source documentation builds.
llvm-svn: 210177
Diffstat (limited to 'lld/unittests/DriverTests')
-rw-r--r-- | lld/unittests/DriverTests/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lld/unittests/DriverTests/Makefile b/lld/unittests/DriverTests/Makefile new file mode 100644 index 00000000000..e538a08544d --- /dev/null +++ b/lld/unittests/DriverTests/Makefile @@ -0,0 +1,19 @@ +##===---- 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 \ + lldELF.a lldMachO.a lldPasses.a lldPECOFF.a lldYAML.a \ + lldReaderWriter.a lldCore.a lldNative.a \ + lldHexagonELFTarget.a lldPPCELFTarget.a lldMipsELFTarget.a \ + lldX86ELFTarget.a lldX86_64ELFTarget.a LLVMLinker.a \ + LLVMOption.a LLVMObject.a LLVMBitReader.a LLVMCore.a LLVMSupport.a + +include $(LLD_LEVEL)/unittests/Makefile |