diff options
Diffstat (limited to 'drivers/gpu/drm/amd/dal/Makefile')
-rw-r--r-- | drivers/gpu/drm/amd/dal/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/dal/Makefile b/drivers/gpu/drm/amd/dal/Makefile new file mode 100644 index 000000000000..f1cc942c725f --- /dev/null +++ b/drivers/gpu/drm/amd/dal/Makefile @@ -0,0 +1,14 @@ +# +# Makefile for the DAL (Display Abstract Layer), which is a sub-component +# of the AMDGPU drm driver. +# It provides the HW control for display related functionalities. + +AMDDALPATH = $(RELATIVE_AMD_DAL_PATH) + +subdir-ccflags-y += -I$(AMDDALPATH)/ -I$(AMDDALPATH)/include -DDAL_CZ_BRINGUP + +DAL_LIBS = amdgpu_dm basics + +AMD_DAL = $(addsuffix /Makefile, $(addprefix $(FULL_AMD_DAL_PATH)/,$(DAL_LIBS))) + +include $(AMD_DAL) |