misc/libtremor/Android.mk
author koda
Thu, 25 Oct 2012 05:06:00 +0200
changeset 7817 6cc558a69b58
parent 7699 2455207a2c71
child 7849 a12155461b34
permissions -rw-r--r--
countless small optimisation for cmake, output messages are now coherent (mostly) and the options get fully respected (eg. skipping library search if not activated)
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 =    \
7699
2455207a2c71 blindly trying to fix the android build
koda
parents: 6045
diff changeset
    10
    tremor/bitwise.c             tremor/info.c             tremor/codebook.c \
2455207a2c71 blindly trying to fix the android build
koda
parents: 6045
diff changeset
    11
    tremor/dsp.c                 tremor/mapping0.c \
2455207a2c71 blindly trying to fix the android build
koda
parents: 6045
diff changeset
    12
    tremor/floor0.c              tremor/mdct.c \
2455207a2c71 blindly trying to fix the android build
koda
parents: 6045
diff changeset
    13
    tremor/floor1.c              tremor/misc.c \
2455207a2c71 blindly trying to fix the android build
koda
parents: 6045
diff changeset
    14
    tremor/floor_lookup.c        tremor/res012.c \
2455207a2c71 blindly trying to fix the android build
koda
parents: 6045
diff changeset
    15
    tremor/framing.c             tremor/vorbisfile.c
6039
d75329716a02 Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff changeset
    16
d75329716a02 Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff changeset
    17
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
    18