mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 08:10:11 +01:00
There's no point in keeping around the full table of marketing names, when amdgpu_get_marketing_name only ever returns the device's marketing name. Acked-by: Slava Abramov <slava.abramov@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
19 lines
437 B
Makefile
19 lines
437 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
# Import variables LIBDRM_AMDGPU_FILES, LIBDRM_AMDGPU_H_FILES
|
|
include $(LOCAL_PATH)/Makefile.sources
|
|
|
|
LOCAL_MODULE := libdrm_amdgpu
|
|
|
|
LOCAL_SHARED_LIBRARIES := libdrm
|
|
|
|
LOCAL_SRC_FILES := $(LIBDRM_AMDGPU_FILES)
|
|
|
|
LOCAL_CFLAGS := \
|
|
-DAMDGPU_ASIC_ID_TABLE=\"/vendor/etc/hwdata/amdgpu.ids\"
|
|
|
|
LOCAL_REQUIRED_MODULES := amdgpu.ids
|
|
|
|
include $(LIBDRM_COMMON_MK)
|
|
include $(BUILD_SHARED_LIBRARY)
|