Mercurial > sdl-ios-xcode
annotate Makefile.android @ 4947:619884e8a714
Fixed trying to create an XRender texture for YUV formats
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 01 Jan 2011 20:46:39 -0800 |
parents | bd009a923441 |
children | faad280e3280 |
rev | line source |
---|---|
4700 | 1 # Makefile to build the SDL library |
2 | |
4714 | 3 include ./android/config.cfg #get ANDROID_NDK |
4 | |
4941 | 5 TOOLS_PATH=$(ANDROID_NDK)/toolchains/arm-eabi-4.4.0/prebuilt/darwin-x86/bin |
6 ANDROID_INCLUDES = -I$(ANDROID_NDK)/platforms/android-4/arch-arm/usr/include | |
4700 | 7 INCLUDE = -I./include |
4701
d40bb3165d2b
Added (partially implemented) android video backend and associated files needed to build
Paul Hunkin <paul@bieh.net>
parents:
4700
diff
changeset
|
8 CFLAGS = -g -O2 $(INCLUDE) $(ANDROID_INCLUDES) -DANDROID -DANDROID_NDK -static |
4700 | 9 |
10 AR = $(TOOLS_PATH)/arm-eabi-ar | |
11 RANLIB = $(TOOLS_PATH)/arm-eabi-ranlib | |
12 CC = $(TOOLS_PATH)/arm-eabi-gcc | |
13 | |
14 | |
15 CONFIG_H = include/SDL_config.h | |
16 TARGET = libSDL.a | |
17 SOURCES = \ | |
18 src/*.c \ | |
19 src/audio/*.c \ | |
20 src/cpuinfo/*.c \ | |
21 src/events/*.c \ | |
22 src/file/*.c \ | |
23 src/joystick/*.c \ | |
24 src/haptic/*.c \ | |
25 src/stdlib/*.c \ | |
26 src/thread/*.c \ | |
27 src/timer/*.c \ | |
28 src/video/*.c \ | |
29 src/power/*.c \ | |
4718
79aa6c61f33b
Added stub android sound system
Paul Hunkin <paul@bieh.net>
parents:
4714
diff
changeset
|
30 src/audio/android/*.c \ |
4701
d40bb3165d2b
Added (partially implemented) android video backend and associated files needed to build
Paul Hunkin <paul@bieh.net>
parents:
4700
diff
changeset
|
31 src/video/android/*.c \ |
4722 | 32 src/joystick/android/*.c \ |
4700 | 33 src/haptic/dummy/*.c \ |
34 src/atomic/dummy/*.c \ | |
4720
80f8d672b52e
Oops, I wasn't using pthreads. Fixed so we can have mutexes and stuff
Paul Hunkin <paul@bieh.net>
parents:
4718
diff
changeset
|
35 src/thread/pthread/*.c \ |
80f8d672b52e
Oops, I wasn't using pthreads. Fixed so we can have mutexes and stuff
Paul Hunkin <paul@bieh.net>
parents:
4718
diff
changeset
|
36 src/timer/unix/*.c \ |
4700 | 37 src/loadso/dummy/*.c \ |
38 | |
39 OBJECTS = $(shell echo $(SOURCES) | sed -e 's,\.c,\.o,g') | |
40 | |
41 all: $(TARGET) | |
42 | |
43 $(TARGET): $(CONFIG_H) $(OBJECTS) | |
44 $(AR) crv $@ $^ | |
45 $(RANLIB) $@ | |
46 | |
47 $(CONFIG_H): | |
48 cp $(CONFIG_H).default $(CONFIG_H) | |
49 | |
50 clean: | |
51 rm -f $(TARGET) $(OBJECTS) |