Android.mk 1.1 KB

123456789101112131415161718192021222324252627282930
  1. LOCAL_PATH := $(call my-dir)
  2. include $(CLEAR_VARS)
  3. LOCAL_MODULE := lzham
  4. LOCAL_SRC_FILES := \
  5. ../../Source/lzham_assert.cpp \
  6. ../../Source/lzham_checksum.cpp \
  7. ../../Source/lzham_huffman_codes.cpp \
  8. ../../Source/lzham_lzbase.cpp \
  9. ../../Source/lzham_lzcomp.cpp \
  10. ../../Source/lzham_lzcomp_internal.cpp \
  11. ../../Source/lzham_lzcomp_state.cpp \
  12. ../../Source/lzham_lzdecomp.cpp \
  13. ../../Source/lzham_lzdecompbase.cpp \
  14. ../../Source/lzham_match_accel.cpp \
  15. ../../Source/lzham_mem.cpp \
  16. ../../Source/lzham_platform.cpp \
  17. ../../Source/lzham_prefix_coding.cpp \
  18. ../../Source/lzham_pthreads_threading.cpp \
  19. ../../Source/lzham_symbol_codec.cpp \
  20. ../../Source/lzham_timer.cpp \
  21. ../../Source/lzham_vector.cpp \
  22. ../../Source/lzham_win32_threading.cpp
  23. LOCAL_CFLAGS := -O3 -fshort-wchar -ffast-math -fomit-frame-pointer
  24. LOCAL_CPPFLAGS := -O3 -fshort-wchar -ffast-math -fomit-frame-pointer
  25. LOCAL_CPP_FEATURES := # rtti exceptions
  26. LOCAL_ARM_NEON := true # force NEON usage for all files
  27. include $(BUILD_STATIC_LIBRARY)