mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-11-28 06:52:07 +00:00
4597b03873
Opens in Android Studio but haven't even tried to build it yet (it won't.. I know that much!)
16 lines
322 B
Makefile
16 lines
322 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libogg
|
|
LOCAL_CFLAGS += -I$(LOCAL_PATH)/../include -ffast-math -fsigned-char
|
|
ifeq ($(TARGET_ARCH),arm)
|
|
LOCAL_CFLAGS += -march=armv6 -marm -mfloat-abi=softfp -mfpu=vfp
|
|
endif
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
|
bitwise.c \
|
|
framing.c
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|