mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 00:41:08 +00:00
17da7c88d0
Make sure all needed headers are found when building via depot. Issue #4329.
11 lines
369 B
Makefile
11 lines
369 B
Makefile
ifeq ($(CONTRIB_DIR),)
|
|
DRM_SRC_DIR = $(realpath $(call select_from_repositories,include/drm)/../..)
|
|
else
|
|
DRM_SRC_DIR = $(call select_from_ports,libdrm)/src/lib/libdrm
|
|
endif
|
|
|
|
INC_DIR += $(DRM_SRC_DIR)
|
|
INC_DIR += $(addprefix $(DRM_SRC_DIR)/,include/etnaviv include/drm include)
|
|
INC_DIR += $(addprefix $(DRM_SRC_DIR)/,etnaviv)
|
|
INC_DIR += $(addprefix $(DRM_SRC_DIR)/,iris)
|