comparison Makefile.pandora @ 3218:81773a1eac83

Patch from David Carre: I fixed a bug in the "SDL_DestroyRenderer()" function in the pandora x11 renderer (in fact the bug was in the "X11_GLES_MakeCurrent()" function) that was causing a crash when exiting SDL. There was a problem while terminating the x11 egl window, that was preventing to quit/close SDL/SDL-window then reload SDL/SDL-window inside the same application.
author Sam Lantinga <slouken@libsdl.org>
date Thu, 30 Jul 2009 14:53:57 +0000
parents b7a48f533966
children 11cedc036ca1
comparison
equal deleted inserted replaced
3217:26ce0b98f2fb 3218:81773a1eac83
6 CXX = arm-none-linux-gnueabi-g++ 6 CXX = arm-none-linux-gnueabi-g++
7 STRIP = arm-none-linux-gnueabi-strip 7 STRIP = arm-none-linux-gnueabi-strip
8 8
9 CFLAGS = -O3 -march=armv7-a -mcpu=cortex-a8 -mtune=cortex-a8 -mfloat-abi=softfp \ 9 CFLAGS = -O3 -march=armv7-a -mcpu=cortex-a8 -mtune=cortex-a8 -mfloat-abi=softfp \
10 -mfpu=neon -ftree-vectorize -ffast-math -fomit-frame-pointer -fno-strict-aliasing -fsingle-precision-constant \ 10 -mfpu=neon -ftree-vectorize -ffast-math -fomit-frame-pointer -fno-strict-aliasing -fsingle-precision-constant \
11 -I./include -I$(PNDSDK)/usr/include 11 -I./include -I$(PNDSDK)/usr/include -DSDL_REVISION=0
12 12
13 TARGET = libSDL.a 13 TARGET = libSDL.a
14 14
15 SOURCES = ./src/*.c ./src/audio/*.c ./src/cdrom/*.c ./src/cpuinfo/*.c ./src/events/*.c \ 15 SOURCES = ./src/*.c ./src/audio/*.c ./src/cdrom/*.c ./src/cpuinfo/*.c ./src/events/*.c \
16 ./src/file/*.c ./src/stdlib/*.c ./src/thread/*.c ./src/timer/*.c ./src/video/*.c \ 16 ./src/file/*.c ./src/stdlib/*.c ./src/thread/*.c ./src/timer/*.c ./src/video/*.c \
22 ./src/video/pandora/SDL_pandora.o ./src/video/pandora/SDL_pandora_events.o ./src/video/x11/*.c 22 ./src/video/pandora/SDL_pandora.o ./src/video/pandora/SDL_pandora_events.o ./src/video/x11/*.c
23 23
24 24
25 OBJECTS = $(shell echo $(SOURCES) | sed -e 's,\.c,\.o,g') 25 OBJECTS = $(shell echo $(SOURCES) | sed -e 's,\.c,\.o,g')
26 26
27 CONFIG_H = $(shell cp include/SDL_config_pandora.h include/SDL_config.h && touch include/SDL_revision.h)
28
27 all: $(TARGET) 29 all: $(TARGET)
28 30
29 $(TARGET): $(CONFIG_H) $(OBJECTS) 31 $(TARGET): $(CONFIG_H) $(OBJECTS)
30 $(AR) crv $@ $^ 32 $(AR) crv $@ $^
31 $(RANLIB) $@ 33 $(RANLIB) $@
32 34
33 $(CONFIG_H):
34 cp include/SDL_config_pandora.h include/SDL_config.h
35
36 clean: 35 clean:
37 rm -f $(TARGET) $(OBJECTS) 36 rm -f $(TARGET) $(OBJECTS)