blob: a26595f1ca6608fdeeaeaae7d54e452e760b1255 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Select the correct configuration for building the DRI drivers depending on
# the build architecture.
ifneq ($(wildcard $(TOP)/configs/debian-dri-$(DEB_BUILD_ARCH)),)
include $(TOP)/configs/debian-dri-$(DEB_BUILD_ARCH)
else
include $(TOP)/configs/debian-dri-any
endif
CONFIG_NAME = debian-dri
# vim: ft=make
|