author | Gabriel Jacobo <gabomdq@gmail.com> |
Mon, 19 Aug 2013 16:29:46 -0300 | |
changeset 7659 | ac4ce59c40e7 |
parent 7501 | b27825bb5879 |
child 7667 | be1cc6f55840 |
permissions | -rwxr-xr-x |
4964
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
1 |
LOCAL_PATH := $(call my-dir) |
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
2 |
|
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
3 |
########################### |
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
4 |
# |
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
5 |
# SDL shared library |
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
6 |
# |
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
7 |
########################### |
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
8 |
|
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
9 |
include $(CLEAR_VARS) |
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
10 |
|
6270
0cf2443a0b17
Updated Android Makefile for SDL2
Sam Lantinga <slouken@libsdl.org>
parents:
6208
diff
changeset
|
11 |
LOCAL_MODULE := SDL2 |
4964
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
12 |
|
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
13 |
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include |
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
14 |
|
7311
56e66417dcee
Improved include paths for projects using SDL on Android
Sam Lantinga <slouken@libsdl.org>
parents:
6448
diff
changeset
|
15 |
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES) |
56e66417dcee
Improved include paths for projects using SDL on Android
Sam Lantinga <slouken@libsdl.org>
parents:
6448
diff
changeset
|
16 |
|
5090
327f181542f1
Include windows.h in a single point in the source, so we can be consistent about the definition of UNICODE and have core utility functions for Windows that all modules can share.
Sam Lantinga <slouken@libsdl.org>
parents:
5003
diff
changeset
|
17 |
LOCAL_SRC_FILES := \ |
4964
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
18 |
$(subst $(LOCAL_PATH)/,, \ |
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
19 |
$(wildcard $(LOCAL_PATH)/src/*.c) \ |
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
20 |
$(wildcard $(LOCAL_PATH)/src/audio/*.c) \ |
5090
327f181542f1
Include windows.h in a single point in the source, so we can be consistent about the definition of UNICODE and have core utility functions for Windows that all modules can share.
Sam Lantinga <slouken@libsdl.org>
parents:
5003
diff
changeset
|
21 |
$(wildcard $(LOCAL_PATH)/src/audio/android/*.c) \ |
327f181542f1
Include windows.h in a single point in the source, so we can be consistent about the definition of UNICODE and have core utility functions for Windows that all modules can share.
Sam Lantinga <slouken@libsdl.org>
parents:
5003
diff
changeset
|
22 |
$(wildcard $(LOCAL_PATH)/src/audio/dummy/*.c) \ |
5003
3a95a2b93eb3
Updated the atomic API for better use cases
Sam Lantinga <slouken@libsdl.org>
parents:
4964
diff
changeset
|
23 |
$(LOCAL_PATH)/src/atomic/SDL_atomic.c \ |
3a95a2b93eb3
Updated the atomic API for better use cases
Sam Lantinga <slouken@libsdl.org>
parents:
4964
diff
changeset
|
24 |
$(LOCAL_PATH)/src/atomic/SDL_spinlock.c.arm \ |
7501
b27825bb5879
Android: Removed all unnecessary dependencies on C++.
Eric Wing <ewing . public |-at-| gmail . com>
parents:
7311
diff
changeset
|
25 |
$(wildcard $(LOCAL_PATH)/src/core/android/*.c) \ |
4964
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
26 |
$(wildcard $(LOCAL_PATH)/src/cpuinfo/*.c) \ |
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
27 |
$(wildcard $(LOCAL_PATH)/src/events/*.c) \ |
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
28 |
$(wildcard $(LOCAL_PATH)/src/file/*.c) \ |
5090
327f181542f1
Include windows.h in a single point in the source, so we can be consistent about the definition of UNICODE and have core utility functions for Windows that all modules can share.
Sam Lantinga <slouken@libsdl.org>
parents:
5003
diff
changeset
|
29 |
$(wildcard $(LOCAL_PATH)/src/haptic/*.c) \ |
327f181542f1
Include windows.h in a single point in the source, so we can be consistent about the definition of UNICODE and have core utility functions for Windows that all modules can share.
Sam Lantinga <slouken@libsdl.org>
parents:
5003
diff
changeset
|
30 |
$(wildcard $(LOCAL_PATH)/src/haptic/dummy/*.c) \ |
4964
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
31 |
$(wildcard $(LOCAL_PATH)/src/joystick/*.c) \ |
5090
327f181542f1
Include windows.h in a single point in the source, so we can be consistent about the definition of UNICODE and have core utility functions for Windows that all modules can share.
Sam Lantinga <slouken@libsdl.org>
parents:
5003
diff
changeset
|
32 |
$(wildcard $(LOCAL_PATH)/src/joystick/android/*.c) \ |
5092 | 33 |
$(wildcard $(LOCAL_PATH)/src/loadso/dlopen/*.c) \ |
5090
327f181542f1
Include windows.h in a single point in the source, so we can be consistent about the definition of UNICODE and have core utility functions for Windows that all modules can share.
Sam Lantinga <slouken@libsdl.org>
parents:
5003
diff
changeset
|
34 |
$(wildcard $(LOCAL_PATH)/src/power/*.c) \ |
6448
64a6297a8b93
Fixed bug 1606 - SDL does not implement SDL_GetPowerInfo() for Android.
Sam Lantinga <slouken@libsdl.org>
parents:
6270
diff
changeset
|
35 |
$(wildcard $(LOCAL_PATH)/src/power/android/*.c) \ |
5161
1bd1e62e648d
Fixed building for Android
Sam Lantinga <slouken@libsdl.org>
parents:
5092
diff
changeset
|
36 |
$(wildcard $(LOCAL_PATH)/src/render/*.c) \ |
5204
daa5463466c5
Fixed building on Android, added SDL_opengles2.h, removed unnecessary SDL_glesfuncs.h
Sam Lantinga <slouken@libsdl.org>
parents:
5161
diff
changeset
|
37 |
$(wildcard $(LOCAL_PATH)/src/render/*/*.c) \ |
4964
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
38 |
$(wildcard $(LOCAL_PATH)/src/stdlib/*.c) \ |
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
39 |
$(wildcard $(LOCAL_PATH)/src/thread/*.c) \ |
5090
327f181542f1
Include windows.h in a single point in the source, so we can be consistent about the definition of UNICODE and have core utility functions for Windows that all modules can share.
Sam Lantinga <slouken@libsdl.org>
parents:
5003
diff
changeset
|
40 |
$(wildcard $(LOCAL_PATH)/src/thread/pthread/*.c) \ |
4964
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
41 |
$(wildcard $(LOCAL_PATH)/src/timer/*.c) \ |
5090
327f181542f1
Include windows.h in a single point in the source, so we can be consistent about the definition of UNICODE and have core utility functions for Windows that all modules can share.
Sam Lantinga <slouken@libsdl.org>
parents:
5003
diff
changeset
|
42 |
$(wildcard $(LOCAL_PATH)/src/timer/unix/*.c) \ |
4964
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
43 |
$(wildcard $(LOCAL_PATH)/src/video/*.c) \ |
5092 | 44 |
$(wildcard $(LOCAL_PATH)/src/video/android/*.c)) |
4964
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
45 |
|
6208
291fea716f09
David Carre cpasjuste@gmail.com
Sam Lantinga <slouken@libsdl.org>
parents:
5204
diff
changeset
|
46 |
LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES |
7659
ac4ce59c40e7
Fixes bug #2037, common EGL code for Android and X11
Gabriel Jacobo <gabomdq@gmail.com>
parents:
7501
diff
changeset
|
47 |
LOCAL_LDLIBS := -ldl -lGLESv1_CM -lGLESv2 -llog -landroid |
4964
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
48 |
|
6c645018741e
Build the SDL library as a shared object on Android, so it will work correctly with SDL_image and SDL_ttf.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
49 |
include $(BUILD_SHARED_LIBRARY) |