misc/libtremor/Android.mk
author nemo
Fri, 23 Mar 2012 18:20:59 -0400
changeset 6810 5337f554480e
parent 6045 9a7cc0f29430
child 7699 2455207a2c71
permissions -rw-r--r--
This has bugged me for a while. Since we are missing the source SVGs for this theme, removed the leaves crudely in GIMP. Also added some basic roots. Someone more artistic is encouraged to try and improve it.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6039
d75329716a02 Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff changeset
     1
LOCAL_PATH := $(call my-dir)
d75329716a02 Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff changeset
     2
d75329716a02 Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff changeset
     3
include $(CLEAR_VARS)
d75329716a02 Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff changeset
     4
d75329716a02 Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff changeset
     5
LOCAL_MODULE := tremor
d75329716a02 Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff changeset
     6
d75329716a02 Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff changeset
     7
LOCAL_CFLAGS := -I$(LOCAL_PATH) -DHAVE_ALLOCA_H
d75329716a02 Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff changeset
     8
6043
9bd2d6b1ba52 update from rev d75329716a02, it really works now (i think)
Xeli
parents: 6039
diff changeset
     9
LOCAL_SRC_FILES =    \
6045
9a7cc0f29430 Using misc/libtremor/tremor rather than misc/tremor, plus added the include in the android.mk of SDL_mixer
Xeli
parents: 6043
diff changeset
    10
        tremor/bitwise.c    \
9a7cc0f29430 Using misc/libtremor/tremor rather than misc/tremor, plus added the include in the android.mk of SDL_mixer
Xeli
parents: 6043
diff changeset
    11
        tremor/block.c      \
9a7cc0f29430 Using misc/libtremor/tremor rather than misc/tremor, plus added the include in the android.mk of SDL_mixer
Xeli
parents: 6043
diff changeset
    12
        tremor/codebook.c   \
9a7cc0f29430 Using misc/libtremor/tremor rather than misc/tremor, plus added the include in the android.mk of SDL_mixer
Xeli
parents: 6043
diff changeset
    13
        tremor/floor0.c     \
9a7cc0f29430 Using misc/libtremor/tremor rather than misc/tremor, plus added the include in the android.mk of SDL_mixer
Xeli
parents: 6043
diff changeset
    14
        tremor/floor1.c     \
9a7cc0f29430 Using misc/libtremor/tremor rather than misc/tremor, plus added the include in the android.mk of SDL_mixer
Xeli
parents: 6043
diff changeset
    15
        tremor/framing.c    \
9a7cc0f29430 Using misc/libtremor/tremor rather than misc/tremor, plus added the include in the android.mk of SDL_mixer
Xeli
parents: 6043
diff changeset
    16
        tremor/info.c       \
9a7cc0f29430 Using misc/libtremor/tremor rather than misc/tremor, plus added the include in the android.mk of SDL_mixer
Xeli
parents: 6043
diff changeset
    17
        tremor/mapping0.c   \
9a7cc0f29430 Using misc/libtremor/tremor rather than misc/tremor, plus added the include in the android.mk of SDL_mixer
Xeli
parents: 6043
diff changeset
    18
        tremor/mdct.c       \
9a7cc0f29430 Using misc/libtremor/tremor rather than misc/tremor, plus added the include in the android.mk of SDL_mixer
Xeli
parents: 6043
diff changeset
    19
        tremor/registry.c   \
9a7cc0f29430 Using misc/libtremor/tremor rather than misc/tremor, plus added the include in the android.mk of SDL_mixer
Xeli
parents: 6043
diff changeset
    20
        tremor/res012.c     \
9a7cc0f29430 Using misc/libtremor/tremor rather than misc/tremor, plus added the include in the android.mk of SDL_mixer
Xeli
parents: 6043
diff changeset
    21
        tremor/sharedbook.c \
9a7cc0f29430 Using misc/libtremor/tremor rather than misc/tremor, plus added the include in the android.mk of SDL_mixer
Xeli
parents: 6043
diff changeset
    22
        tremor/synthesis.c  \
9a7cc0f29430 Using misc/libtremor/tremor rather than misc/tremor, plus added the include in the android.mk of SDL_mixer
Xeli
parents: 6043
diff changeset
    23
        tremor/vorbisfile.c \
9a7cc0f29430 Using misc/libtremor/tremor rather than misc/tremor, plus added the include in the android.mk of SDL_mixer
Xeli
parents: 6043
diff changeset
    24
        tremor/window.c     
6039
d75329716a02 Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff changeset
    25
d75329716a02 Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff changeset
    26
include $(BUILD_STATIC_LIBRARY)
d75329716a02 Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff changeset
    27