16 lines
349 B
Makefile
16 lines
349 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
include $(LOCAL_PATH)/Makefile.sources
|
|
|
|
LOCAL_SRC_FILES := $(filter-out %.h,$(MODETEST_FILES))
|
|
|
|
LOCAL_MODULE := modetest
|
|
|
|
LOCAL_SHARED_LIBRARIES := libdrm_platform
|
|
LOCAL_STATIC_LIBRARIES := libdrm_util
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/..
|
|
|
|
include $(LIBDRM_COMMON_MK)
|
|
include $(BUILD_EXECUTABLE)
|