Blame view

buildroot/buildroot-2016.08.1/package/sdl2_gfx/sdl2_gfx.mk 930 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  ################################################################################
  #
  # sdl2_gfx
  #
  ################################################################################
  
  SDL2_GFX_VERSION = 1.0.1
  SDL2_GFX_SOURCE = SDL2_gfx-$(SDL2_GFX_VERSION).tar.gz
  SDL2_GFX_SITE = http://www.ferzkopp.net/Software/SDL2_gfx
  SDL2_GFX_LICENSE = zlib
  SDL2_GFX_LICENSE_FILES = COPYING SDL2_framerate.h
  SDL2_GFX_INSTALL_STAGING = YES
  SDL2_GFX_DEPENDENCIES = sdl2 host-pkgconf
  SDL2_GFX_CONF_OPTS = --disable-sdltest
  # configure/Makefile.in not up-to-date, causing aclocal to be used at
  # build time if we don't autoreconf.
  SDL2_GFX_AUTORECONF = YES
  
  # Even though x86_64 processors support MMX, the MMX-specific assembly
  # code in sdl2_gfx is IA32 specific, and does not build for x86_64.
  ifeq ($(BR2_i386)$(BR2_X86_CPU_HAS_MMX),yy)
  SDL2_GFX_CONF_OPTS += --enable-mmx
  else
  SDL2_GFX_CONF_OPTS += --disable-mmx
  endif
  
  $(eval $(autotools-package))