1LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4
5LOCAL_MODULE := libaudioutils
6LOCAL_MODULE_TAGS := optional
7
8LOCAL_SRC_FILES:= \
9	fixedfft.cpp.arm \
10	primitives.c \
11	resampler.c \
12	echo_reference.c
13
14LOCAL_C_INCLUDES += $(call include-path-for, speex)
15LOCAL_C_INCLUDES += \
16	$(call include-path-for, speex) \
17	$(call include-path-for, audio-utils)
18
19LOCAL_SHARED_LIBRARIES := \
20	libcutils \
21	libspeexresampler
22
23include $(BUILD_SHARED_LIBRARY)
24