Android.mk 446 B

123456789101112
  1. LOCAL_PATH := $(call my-dir)
  2. include $(CLEAR_VARS)
  3. LOCAL_MODULE := ogg
  4. LOCAL_SRC_FILES := ../../src/bitwise.c ../../src/framing.c
  5. LOCAL_CFLAGS := -I../include -fshort-wchar -O3 -ffast-math -fomit-frame-pointer
  6. LOCAL_CPPFLAGS := -I../include -fshort-wchar -O3 -ffast-math -fomit-frame-pointer
  7. LOCAL_CPP_FEATURES := # rtti exceptions
  8. LOCAL_ARM_NEON := true # force NEON usage for all files
  9. include $(BUILD_STATIC_LIBRARY)