blob: 59a1e4e22cdf7812e2aad86ff74cf97724c22f0f [file] [log] [blame]
Andrew Duggan72163582014-04-03 16:25:12 -07001LOCAL_PATH := $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE := rmihidtool
Andrew de los Reyes95347462015-09-16 09:35:41 -07005LOCAL_C_INCLUDES := $(LOCAL_PATH)/../rmidevice
Andrew Duggan72163582014-04-03 16:25:12 -07006LOCAL_SRC_FILES := main.cpp
Chih-Hung Hsieh9dc424f2017-10-11 13:52:41 -07007LOCAL_CFLAGS := \
8 -Wall -Werror \
9 -Wno-unused-parameter \
10
Andrew Duggan72163582014-04-03 16:25:12 -070011LOCAL_STATIC_LIBRARIES := rmidevice
12
Andrew de los Reyes95347462015-09-16 09:35:41 -070013include $(BUILD_EXECUTABLE)