1LOCAL_PATH:= $(call my-dir) 2 3# For the host only 4# ===================================================== 5include $(CLEAR_VARS) 6include $(CLEAR_TBLGEN_VARS) 7 8TBLGEN_TABLES := \ 9 DiagnosticCommonKinds.inc \ 10 DiagnosticDriverKinds.inc \ 11 Options.inc \ 12 CC1Options.inc \ 13 CC1AsOptions.inc 14 15clang_driver_SRC_FILES := \ 16 Action.cpp \ 17 CC1AsOptions.cpp \ 18 Compilation.cpp \ 19 Driver.cpp \ 20 DriverOptions.cpp \ 21 Job.cpp \ 22 Phases.cpp \ 23 Tool.cpp \ 24 ToolChain.cpp \ 25 ToolChains.cpp \ 26 Tools.cpp \ 27 Types.cpp \ 28 WindowsToolChain.cpp 29 30LOCAL_SRC_FILES := $(clang_driver_SRC_FILES) 31 32LOCAL_MODULE := libclangDriver 33LOCAL_MODULE_TAGS := optional 34 35LOCAL_MODULE_TAGS := optional 36 37include $(CLANG_HOST_BUILD_MK) 38include $(CLANG_TBLGEN_RULES_MK) 39include $(CLANG_VERSION_INC_MK) 40include $(BUILD_HOST_STATIC_LIBRARY) 41