1##===- clang/lib/FrontendTool/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##===----------------------------------------------------------------------===## 9 10CLANG_LEVEL := ../.. 11LIBRARYNAME := clangFrontendTool 12 13include $(CLANG_LEVEL)/Makefile 14include $(CLANG_LEVEL)/../../Makefile.config 15 16ifeq ($(ENABLE_CLANG_ARCMT),1) 17 CXX.Flags += -DCLANG_ENABLE_ARCMT 18 CXX.Flags += -DCLANG_ENABLE_OBJC_REWRITER 19endif 20 21ifeq ($(ENABLE_CLANG_STATIC_ANALYZER),1) 22 CXX.Flags += -DCLANG_ENABLE_STATIC_ANALYZER 23endif 24 25 26