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