Home | History | Annotate | Download | only in screenshot
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_SRC_FILES := screenshot.c
      5 
      6 LOCAL_MODULE := screenshot
      7 
      8 LOCAL_SHARED_LIBRARIES := libcutils libz
      9 LOCAL_STATIC_LIBRARIES := libpng
     10 LOCAL_C_INCLUDES += external/zlib
     11 
     12 include $(BUILD_EXECUTABLE)
     13