Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 529 Bytes

Android.mk

File metadata and controls

32 lines (24 loc) · 529 Bytes
 
1
2
3
4
5
6
7
8
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := vorbisidec
LOCAL_C_INCLUDES :=
Oct 6, 2019
Oct 6, 2019
9
LOCAL_CFLAGS := -DHAVE_ALLOCA -DVAR_ARRAYS
10
11
ifeq ($(TARGET_ARCH),arm)
Oct 23, 2017
Oct 23, 2017
12
LOCAL_CFLAGS += -D_ARM_ASSEM_
13
14
15
endif
LOCAL_SRC_FILES += \
Oct 23, 2017
Oct 23, 2017
16
mdct.c.arm \
Oct 23, 2017
Oct 23, 2017
18
window.c.arm \
19
20
synthesis.c \
info.c \
Oct 23, 2017
Oct 23, 2017
21
floor1.c.arm \
22
23
24
25
26
27
floor0.c.arm \
vorbisfile.c.arm \
res012.c \
mapping0.c \
registry.c \
codebook.c \
Oct 23, 2017
Oct 23, 2017
28
sharedbook.c.arm \
29
30
31
32
LOCAL_SHARED_LIBRARIES := ogg
include $(BUILD_STATIC_LIBRARY)