1 LOCAL_PATH:= $(call my-dir) 2 3 include $(CLEAR_VARS) 4 5 LOCAL_MODULE:= android_native_app_glue 6 LOCAL_SRC_FILES:= android_native_app_glue.c 7 LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH) 8 LOCAL_EXPORT_LDLIBS := -llog -landroid 9 # The linker will strip this as "unused" since this is a static library, but we 10 # need to keep it around since it's the interface for JNI. 11 LOCAL_EXPORT_LDFLAGS := -u ANativeActivity_onCreate 12 13 include $(BUILD_STATIC_LIBRARY) 14