diff -r 8cdc7bc3e38c -r d75329716a02 misc/libtremor/Android.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/misc/libtremor/Android.mk Sat Oct 08 14:55:13 2011 +0200 @@ -0,0 +1,13 @@ +LOCAL_PATH := $(call my-dir) + +include $(CLEAR_VARS) + +LOCAL_MODULE := tremor + +LOCAL_CFLAGS := -I$(LOCAL_PATH) -DHAVE_ALLOCA_H + +# Note this simple makefile var substitution, you can find even simpler examples in different Android projects +LOCAL_SRC_FILES := $(notdir $(wildcard $(LOCAL_PATH)/*.c)) + +include $(BUILD_STATIC_LIBRARY) +