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