Mikhail Glushenkov | f188178 | 2009-03-02 09:01:14 +0000 | [diff] [blame] | 1 | ##===- lib/CompilerDriver/Makefile -------------------------*- Makefile -*-===## |
| 2 | # |
| 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
| 5 | # This file is distributed under the University of Illinois Open |
| 6 | # Source License. See LICENSE.TXT for details. |
| 7 | # |
| 8 | ##===----------------------------------------------------------------------===## |
| 9 | |
| 10 | LEVEL = ../.. |
| 11 | |
| 12 | # We don't want this library to appear in `llvm-config --libs` output, so its |
Chris Lattner | f636aa9 | 2010-09-01 16:11:17 +0000 | [diff] [blame] | 13 | # name doesn't start with "LLVM" and NO_LLVM_CONFIG is set. |
Mikhail Glushenkov | f188178 | 2009-03-02 09:01:14 +0000 | [diff] [blame] | 14 | |
Mikhail Glushenkov | b3d3629 | 2010-08-15 07:07:12 +0000 | [diff] [blame] | 15 | LIBRARYNAME = CompilerDriver |
| 16 | LINK_COMPONENTS = support system |
Chris Lattner | f636aa9 | 2010-09-01 16:11:17 +0000 | [diff] [blame] | 17 | NO_LLVM_CONFIG = 1 |
| 18 | |
Mikhail Glushenkov | 2373c99 | 2009-07-03 03:52:47 +0000 | [diff] [blame] | 19 | |
Mikhail Glushenkov | f188178 | 2009-03-02 09:01:14 +0000 | [diff] [blame] | 20 | include $(LEVEL)/Makefile.common |