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