1LOCAL_PATH := $(call my-dir) 2 3include $(CLEAR_VARS) 4LOCAL_MODULE := libfoo 5LOCAL_SRC_FILES := foo.c 6LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH) 7LOCAL_STATIC_LIBRARIES := libbar 8include $(BUILD_STATIC_LIBRARY) 9 10$(call import-module,bar) 11 12
1LOCAL_PATH := $(call my-dir) 2 3include $(CLEAR_VARS) 4LOCAL_MODULE := libfoo 5LOCAL_SRC_FILES := foo.c 6LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH) 7LOCAL_STATIC_LIBRARIES := libbar 8include $(BUILD_STATIC_LIBRARY) 9 10$(call import-module,bar) 11 12