1 # This is a trivial shared library that will be imported 2 # by 'libpath1', and hence by the project's main binary 3 LOCAL_PATH := $(call my-dir) 4 5 include $(CLEAR_VARS) 6 LOCAL_MODULE := libpath2 7 LOCAL_SRC_FILES := path2.c 8 LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH) 9 include $(BUILD_SHARED_LIBRARY) 10 11