Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
20 lines (13 loc) · 452 Bytes

File metadata and controls

20 lines (13 loc) · 452 Bytes
 
Jun 17, 2010
Jun 17, 2010
1
2
3
4
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
Jun 28, 2010
Jun 28, 2010
5
LOCAL_MODULE := sdltest
Jun 17, 2010
Jun 17, 2010
6
Jun 17, 2010
Jun 17, 2010
7
8
SDL := /home/paul/Projects/gsoc/SDL-gsoc2010_android/
Jun 17, 2010
Jun 17, 2010
9
LOCAL_CFLAGS := -DANDROID_NDK \
Jun 17, 2010
Jun 17, 2010
10
11
-DDISABLE_IMPORTGL \
-I$(SDL)/include
Jun 17, 2010
Jun 17, 2010
12
13
LOCAL_SRC_FILES := \
Jun 28, 2010
Jun 28, 2010
14
15
importgl.cpp \
app-android.cpp \
Jun 17, 2010
Jun 17, 2010
16
lesson05.c \
Jun 17, 2010
Jun 17, 2010
17
Jun 17, 2010
Jun 17, 2010
18
LOCAL_LDLIBS := -lGLESv1_CM -ldl -llog -lSDL -lEGL -lgcc -L$(SDL) -L$(SDL)/build-scripts/android_libs/
Jun 17, 2010
Jun 17, 2010
19
20
include $(BUILD_SHARED_LIBRARY)