aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Linker/Android.mk
blob: aa8028ef215f5cc18e809bcafc2fb5d32e433cb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Only use this on the device or emulator.
ifeq ($(TARGET_ARCH),arm)

LOCAL_PATH:= $(call my-dir)

# For the host
# =====================================================
include $(CLEAR_VARS)

LOCAL_SRC_FILES :=      \
     LinkArchives.cpp   \
     LinkItems.cpp      \
     LinkModules.cpp    \
     Linker.cpp

LOCAL_MODULE:= libLLVMLinker

include $(LLVM_HOST_BUILD_MK)
include $(BUILD_HOST_STATIC_LIBRARY)

endif