mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 02:20:15 +01:00
Some of the helpers, such as the pattern drawing helpers or the format lookup helpers, have potential to be reused. Move them into a separate library to make it easier to share them. Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Thierry Reding <treding@nvidia.com> Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
13 lines
256 B
Makefile
13 lines
256 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
include $(LOCAL_PATH)/Makefile.sources
|
|
|
|
LOCAL_SRC_FILES := $(MODETEST_FILES)
|
|
|
|
LOCAL_MODULE := modetest
|
|
|
|
LOCAL_SHARED_LIBRARIES := libdrm
|
|
LOCAL_STATIC_LIBRARIES := libdrm_util
|
|
|
|
include $(BUILD_EXECUTABLE)
|