/ocr/ocrservice/jni/common/Android.mk

http://eyes-free.googlecode.com/ · Makefile · 22 lines · 16 code · 6 blank · 0 comment · 0 complexity · 6acc45423f2b774842d44fba55231fda MD5 · raw file

  1. LOCAL_PATH:= $(call my-dir)
  2. include $(CLEAR_VARS)
  3. LOCAL_SRC_FILES := time_log.cpp
  4. LOCAL_CFLAGS := -Wall \
  5. -DHAVE_MALLOC_H \
  6. -DHAVE_PTHREAD \
  7. -finline-functions \
  8. -frename-registers \
  9. -ffast-math \
  10. -s \
  11. -fomit-frame-pointer
  12. ifeq ($(LOG_TIME),true)
  13. LOCAL_CFLAGS += -DLOG_TIME
  14. endif
  15. LOCAL_MODULE := common
  16. include $(BUILD_STATIC_LIBRARY)