annotate android/testproject/jni/Android.mk @ 4706:12c9d4532b49
Testing out pthread support in android. Appears to work.
author |
Paul Hunkin <paul@bieh.net> |
date |
Fri, 18 Jun 2010 00:02:13 +1200 |
parents |
611d39792201 |
children |
f3f65cb6a382 |
rev |
line source |
4704
|
1 LOCAL_PATH := $(call my-dir)
|
|
2
|
|
3 include $(CLEAR_VARS)
|
|
4
|
|
5 LOCAL_MODULE := sanangeles
|
|
6
|
|
7 LOCAL_CFLAGS := -DANDROID_NDK \
|
|
8 -DDISABLE_IMPORTGL
|
|
9
|
|
10 LOCAL_SRC_FILES := \
|
|
11 importgl.c \
|
|
12 app-android.c \
|
|
13
|
|
14 LOCAL_LDLIBS := -lGLESv1_CM -ldl -llog
|
|
15
|
|
16 include $(BUILD_SHARED_LIBRARY)
|