Home | History | Annotate | Download | only in Basic
      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   AttrHasAttributeImpl.inc \
     10   DiagnosticASTKinds.inc \
     11   DiagnosticAnalysisKinds.inc \
     12   DiagnosticCommentKinds.inc \
     13   DiagnosticCommonKinds.inc \
     14   DiagnosticDriverKinds.inc \
     15   DiagnosticFrontendKinds.inc \
     16   DiagnosticGroups.inc \
     17   DiagnosticIndexName.inc \
     18   DiagnosticLexKinds.inc \
     19   DiagnosticParseKinds.inc \
     20   DiagnosticSemaKinds.inc \
     21   DiagnosticSerializationKinds.inc \
     22   arm_neon.inc
     23 
     24 clang_basic_SRC_FILES := \
     25   Attributes.cpp \
     26   Builtins.cpp \
     27   CharInfo.cpp \
     28   Diagnostic.cpp \
     29   DiagnosticIDs.cpp \
     30   FileManager.cpp \
     31   FileSystemStatCache.cpp \
     32   IdentifierTable.cpp \
     33   LangOptions.cpp \
     34   Module.cpp \
     35   ObjCRuntime.cpp \
     36   OpenMPKinds.cpp \
     37   OperatorPrecedence.cpp \
     38   SourceLocation.cpp \
     39   SourceManager.cpp \
     40   TargetInfo.cpp \
     41   Targets.cpp \
     42   TokenKinds.cpp \
     43   Version.cpp \
     44   VersionTuple.cpp \
     45   VirtualFileSystem.cpp \
     46   Warnings.cpp
     47 
     48 LOCAL_SRC_FILES := $(clang_basic_SRC_FILES)
     49 
     50 LOCAL_MODULE:= libclangBasic
     51 LOCAL_MODULE_TAGS := optional
     52 
     53 LOCAL_MODULE_TAGS := optional
     54 
     55 include $(CLANG_HOST_BUILD_MK)
     56 include $(CLANG_VERSION_INC_MK)
     57 include $(CLANG_TBLGEN_RULES_MK)
     58 include $(BUILD_HOST_STATIC_LIBRARY)
     59