blob: fc3d2c54208a09c817e6e8c4bf7a746555f88e52 [file] [log] [blame]
Andrew Duggan72163582014-04-03 16:25:12 -07001LOCAL_PATH := $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE := rmi4update
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 rmi4update.cpp updateutil.cpp firmware_image.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)