e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
18 lines
534 B
Makefile
18 lines
534 B
Makefile
#############################################################
|
|
#
|
|
# SDL_gfx addon for SDL
|
|
#
|
|
#############################################################
|
|
SDL_GFX_VERSION = 2.0.19
|
|
SDL_GFX_SOURCE = SDL_gfx-$(SDL_GFX_VERSION).tar.gz
|
|
SDL_GFX_SITE = http://www.ferzkopp.net/Software/SDL_gfx-2.0/
|
|
SDL_GFX_INSTALL_STAGING = YES
|
|
SDL_GFX_DEPENDENCIES = sdl
|
|
SDL_GFX_CONF_OPT = \
|
|
--with-sdl-prefix=$(STAGING_DIR)/usr \
|
|
--disable-sdltest \
|
|
--enable-static \
|
|
$(if $(BR2_X86_CPU_HAS_MMX),--enable-mmx,--disable-mmx)
|
|
|
|
$(eval $(autotools-package))
|