aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/AsmPrinter/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'lib/CodeGen/AsmPrinter/Android.mk')
-rw-r--r--lib/CodeGen/AsmPrinter/Android.mk21
1 files changed, 14 insertions, 7 deletions
diff --git a/lib/CodeGen/AsmPrinter/Android.mk b/lib/CodeGen/AsmPrinter/Android.mk
index dcad0a9..0063f43 100644
--- a/lib/CodeGen/AsmPrinter/Android.mk
+++ b/lib/CodeGen/AsmPrinter/Android.mk
@@ -1,17 +1,21 @@
LOCAL_PATH := $(call my-dir)
codegen_asmprinter_SRC_FILES := \
- AsmPrinter.cpp \
- DIE.cpp \
- DwarfDebug.cpp \
- DwarfException.cpp \
- OcamlGCPrinter.cpp
+ AsmPrinter.cpp
# For the host
# =====================================================
include $(CLEAR_VARS)
-LOCAL_SRC_FILES := $(codegen_asmprinter_SRC_FILES)
+LOCAL_SRC_FILES := \
+ AsmPrinter.cpp \
+ AsmPrinterDwarf.cpp \
+ AsmPrinterInlineAsm.cpp \
+ DIE.cpp \
+ DwarfDebug.cpp \
+ DwarfException.cpp \
+ OcamlGCPrinter.cpp
+
LOCAL_MODULE:= libLLVMAsmPrinter
include $(LLVM_HOST_BUILD_MK)
@@ -21,7 +25,10 @@ include $(BUILD_HOST_STATIC_LIBRARY)
# =====================================================
include $(CLEAR_VARS)
-LOCAL_SRC_FILES := $(codegen_asmprinter_SRC_FILES)
+LOCAL_SRC_FILES := \
+ AsmPrinter.cpp \
+ AsmPrinterInlineAsm.cpp
+
LOCAL_MODULE:= libLLVMAsmPrinter
include $(LLVM_DEVICE_BUILD_MK)