mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
dad420670f
If the app is in landscape mode and the user presses the power button, a pause is followed immediately by a surfaceChanged event because the lock screen is shown in portrait mode. This triggers a "false" resume. So, we just pause and resume following the onWindowFocusChanged events. Also, wait for SDL_APP_WILLENTERBACKGROUND and SDL_APP_DIDENTERBACKGROUND before blocking the event pump.
42 lines
728 B
Makefile
42 lines
728 B
Makefile
# Makefile to build the SDL library
|
|
|
|
INCLUDE = -I./include
|
|
CFLAGS = -g -O2 $(INCLUDE)
|
|
AR = ar
|
|
RANLIB = ranlib
|
|
|
|
TARGET = libSDL.a
|
|
SOURCES = \
|
|
src/*.c \
|
|
src/audio/*.c \
|
|
src/audio/dummy/*.c \
|
|
src/cpuinfo/*.c \
|
|
src/events/*.c \
|
|
src/file/*.c \
|
|
src/haptic/*.c \
|
|
src/haptic/dummy/*.c \
|
|
src/joystick/*.c \
|
|
src/joystick/dummy/*.c \
|
|
src/loadso/dummy/*.c \
|
|
src/power/*.c \
|
|
src/render/*.c \
|
|
src/render/software/*.c \
|
|
src/stdlib/*.c \
|
|
src/thread/*.c \
|
|
src/thread/generic/*.c \
|
|
src/timer/*.c \
|
|
src/timer/dummy/*.c \
|
|
src/video/*.c \
|
|
src/video/dummy/*.c \
|
|
|
|
OBJECTS = $(shell echo $(SOURCES) | sed -e 's,\.c,\.o,g')
|
|
|
|
all: $(TARGET)
|
|
|
|
$(TARGET): $(OBJECTS)
|
|
$(AR) crv $@ $^
|
|
$(RANLIB) $@
|
|
|
|
clean:
|
|
rm -f $(TARGET) $(OBJECTS)
|