Android.mk revision c156bc696311928af01132d159b9e307436779bb
1# Only use this on the device or emulator.
2ifneq ($(TARGET_ARCH),arm)
3
4LOCAL_PATH:= $(call my-dir)
5
6# For the host only
7# =====================================================
8include $(CLEAR_VARS)
9
10LOCAL_SRC_FILES :=	\
11	BitWriter.cpp	\
12	BitcodeWriter.cpp	\
13	BitcodeWriterPass.cpp	\
14	ValueEnumerator.cpp
15
16LOCAL_MODULE:= libLLVMBitWriter
17
18include $(LLVM_HOST_BUILD_MK)
19include $(LLVM_GEN_INTRINSICS_MK)
20include $(BUILD_HOST_STATIC_LIBRARY)
21
22endif
23