misc/libtremor/Android.mk
branchwebgl
changeset 9521 8054d9d775fd
parent 9282 92af50454cf2
parent 9519 b8b5c82eb61b
child 9950 2759212a27de
equal deleted inserted replaced
9282:92af50454cf2 9521:8054d9d775fd
     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