8dfd59d114
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
21 lines
465 B
Makefile
21 lines
465 B
Makefile
################################################################################
|
|
#
|
|
# Virtual package for libEGL
|
|
#
|
|
################################################################################
|
|
|
|
LIBEGL_SOURCE =
|
|
|
|
ifeq ($(BR2_PACKAGE_RPI_USERLAND),y)
|
|
LIBEGL_DEPENDENCIES += rpi-userland
|
|
endif
|
|
|
|
ifeq ($(LIBEGL_DEPENDENCIES),)
|
|
define LIBEGL_CONFIGURE_CMDS
|
|
echo "No libEGL implementation selected. Configuration error."
|
|
exit 1
|
|
endef
|
|
endif
|
|
|
|
$(eval $(generic-package))
|