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>
19 lines
515 B
Makefile
19 lines
515 B
Makefile
#############################################################
|
|
#
|
|
# SDL_net: network addon for SDL
|
|
#
|
|
#############################################################
|
|
SDL_NET_VERSION = 1.2.8
|
|
SDL_NET_SITE = http://www.libsdl.org/projects/SDL_net/release
|
|
SDL_NET_SOURCE = SDL_net-$(SDL_NET_VERSION).tar.gz
|
|
|
|
SDL_NET_CONF_OPT = --localstatedir=/var \
|
|
--with-sdl-prefix=$(STAGING_DIR)/usr \
|
|
--with-sdl-exec-prefix=$(STAGING_DIR)/usr
|
|
|
|
SDL_NET_INSTALL_STAGING = YES
|
|
|
|
SDL_NET_DEPENDENCIES = sdl
|
|
|
|
$(eval $(autotools-package))
|