aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM/Disassembler/Android.mk
blob: ab5800c47b4b45695d17a89d4f3925f88b31e6e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Only use this on the device or emulator.
ifeq ($(TARGET_ARCH),arm)

LOCAL_PATH := $(call my-dir)

# For the device only
# =====================================================
include $(CLEAR_VARS)
include $(CLEAR_TBLGEN_VARS)

TBLGEN_TABLES :=	\
	ARMGenDecoderTables.inc	\
	ARMGenEDInfo.inc	\
	ARMGenInstrNames.inc	\
	ARMGenInstrInfo.inc	\
	ARMGenRegisterNames.inc	\
	ARMGenRegisterInfo.h.inc

TBLGEN_TD_DIR := $(LOCAL_PATH)/..

LOCAL_SRC_FILES :=	\
	ARMDisassembler.cpp	\
	ARMDisassemblerCore.cpp

LOCAL_C_INCLUDES +=	\
	$(LOCAL_PATH)/..

LOCAL_MODULE:= libLLVMARMDisassembler

include $(LLVM_DEVICE_BUILD_MK)
include $(LLVM_TBLGEN_RULES_MK)
include $(BUILD_STATIC_LIBRARY)

endif