Advertisement
Guest User

android.mk

a guest
Jan 29th, 2013
511
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. LOCAL_PATH := $(call my-dir)
  2.  
  3. # Create BitmapUtils library
  4.  
  5. include $(CLEAR_VARS)
  6.  
  7. LOCAL_LDLIBS := -llog -ljnigraphics
  8.  
  9. LOCAL_MODULE := bitmaputils
  10. LOCAL_SRC_FILES := bitmaputils.c
  11.  
  12. LOCAL_CFLAGS = -ffast-math -O3 -funroll-loops
  13.  
  14. include $(BUILD_SHARED_LIBRARY)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement