Home | History | Annotate | Download | only in Utils
      1 LOCAL_PATH := $(call my-dir)
      2 
      3 x86_utils_SRC_FILES := \
      4   X86ShuffleDecode.cpp
      5 
      6 # For the device
      7 # =====================================================
      8 include $(CLEAR_VARS)
      9 
     10 LOCAL_SRC_FILES := $(x86_utils_SRC_FILES)
     11 
     12 LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
     13 
     14 LOCAL_MODULE:= libLLVMX86Utils
     15 
     16 LOCAL_MODULE_TAGS := optional
     17 
     18 include $(LLVM_DEVICE_BUILD_MK)
     19 include $(BUILD_STATIC_LIBRARY)
     20 
     21 # For the host
     22 # =====================================================
     23 include $(CLEAR_VARS)
     24 
     25 LOCAL_SRC_FILES := $(x86_utils_SRC_FILES)
     26 
     27 LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
     28 
     29 LOCAL_MODULE:= libLLVMX86Utils
     30 
     31 LOCAL_MODULE_TAGS := optional
     32 
     33 include $(LLVM_HOST_BUILD_MK)
     34 include $(BUILD_HOST_STATIC_LIBRARY)
     35