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