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