blob: 6e3bcfc292b1baf61bfccc2383aae018fdbf9768 [file] [log] [blame]
Ted Kremenek2dc651d2011-08-09 03:39:19 +00001##===- tools/driver/Makefile -------------------------------*- Makefile -*-===##
2#
3# The LLVM Compiler Infrastructure
4#
5# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
7#
8##===----------------------------------------------------------------------===##
9CLANG_LEVEL := ../..
10
11TOOLNAME = diagtool
12
13# No plugins, optimize startup time.
14TOOL_NO_EXPORTS := 1
15
16# Don't install this.
17NO_INSTALL = 1
18
19LINK_COMPONENTS := support
Benjamin Kramer59283a02011-10-23 08:38:37 +000020
21USEDLIBS = clangBasic.a
Ted Kremenek2dc651d2011-08-09 03:39:19 +000022
23include $(CLANG_LEVEL)/Makefile
24