1LOCAL_PATH := $(call my-dir) 2 3# Define a single static library in this Android.mk, it should be 4# compiled 5include $(CLEAR_VARS) 6LOCAL_MODULE := foo 7LOCAL_SRC_FILES := foo.c 8include $(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)