1 LOCAL_PATH:= $(call my-dir) 2 3 # For the host 4 # ===================================================== 5 include $(CLEAR_VARS) 6 7 LOCAL_SRC_FILES := \ 8 Execution.cpp \ 9 ExternalFunctions.cpp \ 10 Interpreter.cpp \ 11 12 LOCAL_MODULE:= libLLVMInterpreter 13 14 LOCAL_MODULE_TAGS := optional 15 16 include $(LLVM_HOST_BUILD_MK) 17 include $(LLVM_GEN_INTRINSICS_MK) 18 include $(BUILD_HOST_STATIC_LIBRARY) 19