comparison android/project/jni/Android.mk @ 4726:9076cdb027af

Cleanups. - Moved to 'project' instead of 'testproject' - Removed extraneous .c files - Removed the android_libs folder (that was against the NDK agreement anyway)
author Paul Hunkin <paul@bieh.net>
date Tue, 17 Aug 2010 15:35:56 +1200
parents
children
comparison
equal deleted inserted replaced
4725:4eb9d3c7fdd2 4726:9076cdb027af
1 LOCAL_PATH := $(call my-dir)
2
3 include $(CLEAR_VARS)
4
5 LOCAL_MODULE := sdlapp
6 SDL := ../../../
7
8 LOCAL_CFLAGS := -DANDROID_NDK \
9 -DDISABLE_IMPORTGL \
10 -I$(SDL)/include
11
12 LOCAL_SRC_FILES := \
13 android-support.cpp \
14 lesson05.c \
15
16 LOCAL_LDLIBS := -lGLESv1_CM -ldl -llog -lSDL -lgcc -L$(SDL)
17
18 include $(BUILD_SHARED_LIBRARY)