test program for package sdl

This commit is contained in:
Volker Grabsch 2010-01-22 03:53:37 +01:00
parent c92062f14b
commit 045a091b19
3 changed files with 25 additions and 1 deletions

View File

@ -140,7 +140,7 @@ build-only-$(1):
cd '$(2)/$($(1)_SUBDIR)'
$(foreach PKG_PATCH,$(sort $(wildcard $(TOP_DIR)/src/$(1)-*.patch)),
(cd '$(2)/$($(1)_SUBDIR)' && patch -p1) < $(PKG_PATCH))
$$(call $(1)_BUILD,$(2)/$($(1)_SUBDIR))
$$(call $(1)_BUILD,$(2)/$($(1)_SUBDIR),$(TOP_DIR)/src/$(1)-test)
rm -rfv '$(2)'
,)
[ -d '$(PREFIX)/installed' ] || mkdir -p '$(PREFIX)/installed'

19
src/sdl-test.c Normal file
View File

@ -0,0 +1,19 @@
/* This file is part of mingw-cross-env. */
/* See doc/index.html or doc/README for further information. */
#include <SDL.h>
int main(int argc, char* argv[])
{
SDL_Surface *screen;
(void)argc;
(void)argv;
if (SDL_Init(SDL_INIT_EVERYTHING) < 0) return 1;
screen = SDL_SetVideoMode(640, 480, 32, SDL_HWSURFACE);
SDL_Quit();
return 0;
}

View File

@ -28,4 +28,9 @@ define $(PKG)_BUILD
--prefix='$(PREFIX)/$(TARGET)'
$(MAKE) -C '$(1)' -j '$(JOBS)' bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
$(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
'$(TARGET)-gcc' \
-W -Wall -Werror -ansi -pedantic \
`'$(TARGET)-pkg-config' sdl --cflags --static --libs` \
'$(2).c' -o '$(PREFIX)/$(TARGET)/bin/test-sdl.exe'
endef