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