1LOCAL_PATH:= $(call my-dir) 2 3include $(CLEAR_VARS) 4 5LOCAL_MODULE := libaudioutils 6LOCAL_MODULE_TAGS := optional 7 8LOCAL_SRC_FILES:= \ 9 channels.c \ 10 fixedfft.cpp.arm \ 11 format.c \ 12 minifloat.c \ 13 primitives.c \ 14 resampler.c \ 15 echo_reference.c 16 17LOCAL_C_INCLUDES += $(call include-path-for, speex) 18LOCAL_C_INCLUDES += \ 19 $(call include-path-for, speex) \ 20 $(call include-path-for, audio-utils) 21 22LOCAL_SHARED_LIBRARIES := \ 23 libcutils \ 24 liblog \ 25 libspeexresampler 26 27include $(BUILD_SHARED_LIBRARY) 28 29include $(CLEAR_VARS) 30LOCAL_MODULE := libaudioutils 31LOCAL_MODULE_TAGS := optional 32LOCAL_SRC_FILES := \ 33 channels.c \ 34 format.c \ 35 minifloat.c \ 36 primitives.c 37LOCAL_C_INCLUDES += \ 38 $(call include-path-for, audio-utils) 39include $(BUILD_HOST_STATIC_LIBRARY) 40 41include $(CLEAR_VARS) 42 43LOCAL_MODULE := libsndfile 44LOCAL_MODULE_TAGS := optional 45 46LOCAL_SRC_FILES := \ 47 tinysndfile.c 48 49LOCAL_C_INCLUDES += \ 50 $(call include-path-for, audio-utils) 51 52#LOCAL_SHARED_LIBRARIES := libaudioutils 53 54include $(BUILD_STATIC_LIBRARY) 55 56include $(CLEAR_VARS) 57 58LOCAL_MODULE := libsndfile 59LOCAL_MODULE_TAGS := optional 60 61LOCAL_SRC_FILES := \ 62 tinysndfile.c 63 64LOCAL_C_INCLUDES += \ 65 $(call include-path-for, audio-utils) 66 67#LOCAL_SHARED_LIBRARIES := libaudioutils 68 69include $(BUILD_HOST_STATIC_LIBRARY) 70 71include $(call all-makefiles-under,$(LOCAL_PATH)) 72 73