mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-15 03:28:24 +02:00
AOSP master now errors if LOCAL_SRC_FILES contains headers, so filter out header files from the source lists. Signed-off-by: Rob Herring <robh@kernel.org>
13 lines
275 B
Makefile
13 lines
275 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
include $(LOCAL_PATH)/Makefile.sources
|
|
|
|
LOCAL_SRC_FILES := $(patsubst %.h, , $(MODETEST_FILES))
|
|
|
|
LOCAL_MODULE := modetest
|
|
|
|
LOCAL_SHARED_LIBRARIES := libdrm
|
|
LOCAL_STATIC_LIBRARIES := libdrm_util
|
|
|
|
include $(BUILD_EXECUTABLE)
|