diff options
Diffstat (limited to 'lib/Transforms/Instrumentation/Android.mk')
-rw-r--r-- | lib/Transforms/Instrumentation/Android.mk | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/Transforms/Instrumentation/Android.mk b/lib/Transforms/Instrumentation/Android.mk new file mode 100644 index 0000000000..29431edd65 --- /dev/null +++ b/lib/Transforms/Instrumentation/Android.mk @@ -0,0 +1,17 @@ +LOCAL_PATH:= $(call my-dir) + +# For the host +# ===================================================== +include $(CLEAR_VARS) + +LOCAL_SRC_FILES := \ + EdgeProfiling.cpp \ + ProfilingUtils.cpp \ + OptimalEdgeProfiling.cpp + +LOCAL_MODULE:= libLLVMInstrumentation + +LOCAL_MODULE_TAGS := optional + +include $(LLVM_HOST_BUILD_MK) +include $(BUILD_HOST_STATIC_LIBRARY) |