misc/libtremor/Android.mk
changeset 9431 0f5961910e27
parent 9357 a501f5ec7b34
parent 9429 7a97a554ac80
child 9433 f0a8ac191839
equal deleted inserted replaced
9357:a501f5ec7b34 9431:0f5961910e27
     1 LOCAL_PATH := $(call my-dir)
       
     2 
       
     3 include $(CLEAR_VARS)
       
     4 
       
     5 LOCAL_MODULE := tremor
       
     6 
       
     7 LOCAL_CFLAGS := -I$(LOCAL_PATH) -DHAVE_ALLOCA_H
       
     8 
       
     9 LOCAL_SRC_FILES =    \
       
    10         tremor/bitwise.c    \
       
    11         tremor/block.c      \
       
    12         tremor/codebook.c   \
       
    13         tremor/floor0.c     \
       
    14         tremor/floor1.c     \
       
    15         tremor/framing.c    \
       
    16         tremor/info.c       \
       
    17         tremor/mapping0.c   \
       
    18         tremor/mdct.c       \
       
    19         tremor/registry.c   \
       
    20         tremor/res012.c     \
       
    21         tremor/sharedbook.c \
       
    22         tremor/synthesis.c  \
       
    23         tremor/vorbisfile.c \
       
    24         tremor/window.c     
       
    25 
       
    26 include $(BUILD_STATIC_LIBRARY)
       
    27