33 lines
795 B
Makefile
33 lines
795 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
profiledata_SRC_FILES := \
|
|
InstrProf.cpp \
|
|
InstrProfReader.cpp \
|
|
InstrProfWriter.cpp \
|
|
|
|
# For the host
|
|
# =====================================================
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE:= libLLVMProfileData
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_SRC_FILES := $(profiledata_SRC_FILES)
|
|
|
|
include $(LLVM_HOST_BUILD_MK)
|
|
include $(LLVM_GEN_INTRINSICS_MK)
|
|
include $(BUILD_HOST_STATIC_LIBRARY)
|
|
|
|
# For the device
|
|
# =====================================================
|
|
ifneq (true,$(DISABLE_LLVM_DEVICE_BUILDS))
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE:= libLLVMProfileData
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_SRC_FILES := $(profiledata_SRC_FILES)
|
|
|
|
include $(LLVM_DEVICE_BUILD_MK)
|
|
include $(LLVM_GEN_INTRINSICS_MK)
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
endif
|