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
611d39792201 Added minimal test project
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
1 LOCAL_PATH := $(call my-dir)
611d39792201 Added minimal test project
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
2
611d39792201 Added minimal test project
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
3 include $(CLEAR_VARS)
611d39792201 Added minimal test project
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
4
611d39792201 Added minimal test project
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
5 LOCAL_MODULE := sanangeles
611d39792201 Added minimal test project
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
6
611d39792201 Added minimal test project
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
7 LOCAL_CFLAGS := -DANDROID_NDK \
611d39792201 Added minimal test project
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
8 -DDISABLE_IMPORTGL
611d39792201 Added minimal test project
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
9
611d39792201 Added minimal test project
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
10 LOCAL_SRC_FILES := \
611d39792201 Added minimal test project
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
11 importgl.c \
611d39792201 Added minimal test project
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
12 app-android.c \
611d39792201 Added minimal test project
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
13
611d39792201 Added minimal test project
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
14 LOCAL_LDLIBS := -lGLESv1_CM -ldl -llog
611d39792201 Added minimal test project
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
15
611d39792201 Added minimal test project
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
16 include $(BUILD_SHARED_LIBRARY)