1 LOCAL_PATH := $(call my-dir) 2 3 # Define a single static library in this Android.mk, it should be 4 # compiled 5 include $(CLEAR_VARS) 6 LOCAL_MODULE := foo 7 LOCAL_SRC_FILES := foo.c 8 include $(BUILD_STATIC_LIBRARY) 9 10 # Import another module, which is not used by the one declared here. 11 # The build.sh will check that it is _not_ compiled. 12 # 13 $(call import-module,android/cpufeatures)