Last Modify : 13 January, 2011(12:44)
#
# scew android.mk
#
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := scew
LOCAL_CFLAGS := -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions
LOCAL_C_INCLUDES += $(NDK_ROOT)/sources/expat/lib $(LOCAL_PATH)/scew
#LOCAL_CPP_EXTENSION := .cpp
LOCAL_STATIC_LIBRARIES += expat
LOCAL_COPY_HEADERS := \
scew/attribute.h \
scew/element.h \
scew/error.h \
scew/parser.h \
scew/scew.h \
scew/str.h \
scew/tree.h \
scew/types.h \
scew/writer.h \
LOCAL_COPY_HEADERS_TO := scew
LOCAL_SRC_FILES := $(addprefix scew/,$(notdir $(wildcard $(LOCAL_PATH)/scew/*.c))))
include $(BUILD_STATIC_LIBRARY)
include $(NDK_ROOT)/sources/expat/Android.mk