Home | History | Annotate | Download | only in thermal-engine
      1 ################################################################################
      2 # @file device/qcom/common/thermal-engine/Android.mk
      3 # @Makefile for installing thermal-engine client header on Android.
      4 ################################################################################
      5 
      6 LOCAL_PATH:= $(call my-dir)
      7 
      8 include $(CLEAR_VARS)
      9 
     10 LOCAL_VENDOR_MODULE := true
     11 LOCAL_COPY_HEADERS_TO := thermal-engine
     12 LOCAL_COPY_HEADERS := ./thermal_client.h
     13 
     14 include $(BUILD_COPY_HEADERS)
     15 
     16 include $(CLEAR_VARS)
     17 LOCAL_MODULE := libThermal_headers
     18 LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
     19 LOCAL_VENDOR_MODULE := true
     20 include $(BUILD_HEADER_LIBRARY)
     21