| LOCAL_PATH:= $(call my-dir) |
| |
| # For the host |
| # ===================================================== |
| include $(CLEAR_VARS) |
| |
| LOCAL_SRC_FILES := \ |
| Intercept.cpp \ |
| JIT.cpp \ |
| JITDebugRegisterer.cpp \ |
| JITDwarfEmitter.cpp \ |
| JITEmitter.cpp \ |
| JITMemoryManager.cpp \ |
| OProfileJITEventListener.cpp \ |
| TargetSelect.cpp |
| |
| LOCAL_MODULE:= libLLVMJIT |
| |
| include $(LLVM_HOST_BUILD_MK) |
| include $(BUILD_HOST_STATIC_LIBRARY) |
| |
| # For the device |
| # ===================================================== |
| include $(CLEAR_VARS) |
| |
| LOCAL_SRC_FILES := \ |
| JITMemoryManager.cpp |
| |
| LOCAL_MODULE:= libLLVMJIT |
| |
| include $(LLVM_DEVICE_BUILD_MK) |
| include $(BUILD_STATIC_LIBRARY) |