2013-03-29 14:42:19 +00:00
|
|
|
include ports/sdl.inc
|
|
|
|
|
|
|
|
SDL_TGZ = $(SDL).tar.gz
|
|
|
|
SDL_URL = http://www.libsdl.org/release/$(SDL_TGZ)
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Interface to top-level prepare Makefile
|
|
|
|
#
|
2013-03-29 14:42:19 +00:00
|
|
|
# Register SDL port as lower case to be consistent with the
|
2011-12-22 15:19:25 +00:00
|
|
|
# other libraries.
|
|
|
|
#
|
|
|
|
PORTS += sdl-$(SDL_VERSION)
|
|
|
|
|
2013-03-29 14:42:19 +00:00
|
|
|
prepare-sdl: $(CONTRIB_DIR)/$(SDL) include/SDL/SDL_platform.h
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
$(CONTRIB_DIR)/$(SDL): clean-sdl
|
|
|
|
|
|
|
|
#
|
|
|
|
# Port-specific local rules
|
|
|
|
#
|
|
|
|
$(DOWNLOAD_DIR)/$(SDL_TGZ):
|
|
|
|
$(VERBOSE)wget -c -P $(DOWNLOAD_DIR) $(SDL_URL) && touch $@
|
|
|
|
|
|
|
|
$(CONTRIB_DIR)/$(SDL): $(DOWNLOAD_DIR)/$(SDL_TGZ)
|
|
|
|
$(VERBOSE)tar xfz $< -C $(CONTRIB_DIR) && touch $@
|
|
|
|
$(VERBOSE)rm -f $@/include/SDL_config.h
|
|
|
|
$(VERBOSE)patch -p0 -i src/lib/sdl/SDL_video.patch
|
2013-03-11 09:35:27 +00:00
|
|
|
$(VERBOSE)patch -d $(CONTRIB_DIR)/$(SDL) -p1 -i $(CURDIR)/src/lib/sdl/SDL_audio.patch
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Install SDL headers
|
|
|
|
#
|
2013-03-29 14:42:19 +00:00
|
|
|
# Use 'SDL_platform.h' as representative of the header files to be installed.
|
|
|
|
#
|
|
|
|
include/SDL/SDL_platform.h:
|
|
|
|
$(VERBOSE)mkdir -p $(dir $@)
|
|
|
|
$(VERBOSE)for i in `find $(CONTRIB_DIR)/$(SDL)/include -name "*.h"`; do \
|
2011-12-22 15:19:25 +00:00
|
|
|
ln -fs ../../$$i include/SDL/; done
|
2013-03-29 14:42:19 +00:00
|
|
|
$(VERBOSE)ln -fs ../../src/lib/sdl/SDL_config.h $(dir $@)
|
|
|
|
$(VERBOSE)ln -fs ../../src/lib/sdl/SDL_config_genode.h $(dir $@)
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
clean-sdl:
|
2013-03-29 14:42:19 +00:00
|
|
|
$(VERBOSE)for i in `find $(CONTRIB_DIR)/$(SDL)/include -name "*.h"`; do \
|
|
|
|
rm -f include/SDL/`basename $$i`; done
|
|
|
|
$(VERBOSE)rm -f $(addprefix include/SDL/,SDL_config_genode.h SDL_config.h)
|
|
|
|
$(VERBOSE)rmdir include/SDL 2>/dev/null || true
|
2011-12-22 15:19:25 +00:00
|
|
|
$(VERBOSE)rm -rf $(CONTRIB_DIR)/$(SDL)
|