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   CC1Options.cpp \
     20   CC1AsOptions.cpp \
     21   Compilation.cpp \
     22   Driver.cpp \
     23   DriverOptions.cpp \
     24   HostInfo.cpp \
     25   Job.cpp \
     26   Option.cpp \
     27   OptTable.cpp \
     28   Phases.cpp \
     29   Tool.cpp \
     30   ToolChain.cpp \
     31   ToolChains.cpp \
     32   Tools.cpp \
     33   Types.cpp
     34 
     35 LOCAL_SRC_FILES := $(clang_driver_SRC_FILES)
     36 
     37 LOCAL_MODULE := libclangDriver
     38 LOCAL_MODULE_TAGS := optional
     39 
     40 LOCAL_MODULE_TAGS := optional
     41 
     42 include $(CLANG_HOST_BUILD_MK)
     43 include $(CLANG_TBLGEN_RULES_MK)
     44 include $(CLANG_VERSION_INC_MK)
     45 include $(BUILD_HOST_STATIC_LIBRARY)
     46