blob: 81b4521ead834616a744365f90f8a97833d50d54 [file] [log] [blame]
Andrew Duggan11df8082014-09-30 13:49:35 -07001LOCAL_PATH := $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE := f54test
Andrew de los Reyes95347462015-09-16 09:35:41 -07005LOCAL_C_INCLUDES := $(LOCAL_PATH)/../rmidevice
Andrew Duggan11df8082014-09-30 13:49:35 -07006LOCAL_SRC_FILES := main.cpp f54test.cpp testutil.cpp display.cpp
Chih-Hung Hsieh9dc424f2017-10-11 13:52:41 -07007LOCAL_CFLAGS := \
8 -Wall -Werror \
9 -Wno-sometimes-uninitialized \
10 -Wno-unused-parameter \
11
Andrew Duggan11df8082014-09-30 13:49:35 -070012LOCAL_STATIC_LIBRARIES := rmidevice
13
Andrew de los Reyes95347462015-09-16 09:35:41 -070014include $(BUILD_EXECUTABLE)