1LOCAL_PATH := $(call my-dir) 2 3include $(CLEAR_VARS) 4LOCAL_MODULE := foo 5LOCAL_SRC_FILES := foo.c 6include $(BUILD_STATIC_LIBRARY) 7 8include $(CLEAR_VARS) 9LOCAL_MODULE := bar 10LOCAL_THIN_ARCHIVE := false 11LOCAL_SRC_FILES := bar.c 12LOCAL_STATIC_LIBRARIES := foo 13include $(BUILD_STATIC_LIBRARY) 14 15include $(CLEAR_VARS) 16LOCAL_MODULE := test_thin_archive 17LOCAL_SRC_FILES := main.c 18LOCAL_STATIC_LIBRARIES := bar 19include $(BUILD_EXECUTABLE) 20