mirror of
https://github.com/DrBeef/QuakeQuest.git
synced 2024-12-18 16:41:37 +00:00
17 lines
322 B
Makefile
17 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)
|