Mercurial > sdl-ios-xcode
annotate Makefile.android @ 4955:361ada59e3aa
Change from jlunder:
Minor configuration changes to smooth the build process, make it work on mac.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 04 Jan 2011 12:46:49 -0800 |
parents | faad280e3280 |
children | 0ab2492f2e17 |
rev | line source |
---|---|
4700 | 1 # Makefile to build the SDL library |
2 | |
4955 | 3 include ./android/config.cfg #get ANDROID_NDK, ANDROID_NDK_HOST |
4714 | 4 |
4955 | 5 TOOLS_PATH=$(ANDROID_NDK)/toolchains/arm-eabi-4.4.0/prebuilt/$(ANDROID_NDK_HOST)/bin |
4941 | 6 ANDROID_INCLUDES = -I$(ANDROID_NDK)/platforms/android-4/arch-arm/usr/include |
4700 | 7 INCLUDE = -I./include |
4951
faad280e3280
Fixes the following warning:
Sam Lantinga <slouken@libsdl.org>
parents:
4941
diff
changeset
|
8 CFLAGS = -g -O2 -fno-short-enums $(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) |