mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-25 14:33:29 +08:00
300f9c9c9d
Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
32 lines
733 B
Makefile
32 lines
733 B
Makefile
#############################################################
|
|
#
|
|
# libdrm
|
|
#
|
|
#############################################################
|
|
LIBDRM_VERSION = 2.4.19
|
|
LIBDRM_SOURCE = libdrm-$(LIBDRM_VERSION).tar.bz2
|
|
LIBDRM_SITE = http://dri.freedesktop.org/libdrm/
|
|
LIBDRM_INSTALL_STAGING = YES
|
|
|
|
LIBDRM_DEPENDENCIES = \
|
|
xproto_glproto \
|
|
xproto_xf86vidmodeproto \
|
|
xlib_libXxf86vm \
|
|
xlib_libXmu \
|
|
xproto_dri2proto \
|
|
pthread-stubs \
|
|
host-pkg-config
|
|
|
|
ifeq ($(BR2_PACKAGE_XDRIVER_XF86_VIDEO_INTEL),y)
|
|
LIBDRM_CONF_OPT += --enable-intel
|
|
LIBDRM_DEPENDENCIES += libatomic_ops
|
|
else
|
|
LIBDRM_CONF_OPT += --disable-intel
|
|
endif
|
|
|
|
ifneq ($(BR2_PACKAGE_XDRIVER_XF86_VIDEO_ATI),y)
|
|
LIBDRM_CONF_OPT += --disable-radeon
|
|
endif
|
|
|
|
$(eval $(call AUTOTARGETS))
|