Home | History | Annotate | Download | only in jni
      1 LOCAL_PATH := $(call my-dir)
      2 
      3 include $(CLEAR_VARS)
      4 LOCAL_MODULE := issue28598_liba
      5 LOCAL_SRC_FILES := liba.cpp
      6 include $(BUILD_SHARED_LIBRARY)
      7 
      8 include $(CLEAR_VARS)
      9 LOCAL_MODULE := issue28598_main
     10 LOCAL_SRC_FILES := main.cpp
     11 LOCAL_SHARED_LIBRARIES := issue28598_liba
     12 include $(BUILD_EXECUTABLE)
     13