1LOCAL_PATH:= $(call my-dir) 2 3# For the host 4# ===================================================== 5include $(CLEAR_VARS) 6 7LOCAL_SRC_FILES := \ 8 RTDyldMemoryManager.cpp \ 9 RuntimeDyldChecker.cpp \ 10 RuntimeDyld.cpp \ 11 RuntimeDyldCOFF.cpp \ 12 RuntimeDyldELF.cpp \ 13 RuntimeDyldMachO.cpp 14 15LOCAL_MODULE:= libLLVMRuntimeDyld 16 17LOCAL_MODULE_TAGS := optional 18 19include $(LLVM_HOST_BUILD_MK) 20include $(BUILD_HOST_STATIC_LIBRARY) 21