1LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4
5LOCAL_MODULE_TAGS := optional
6
7LOCAL_SRC_FILES := $(call all-subdir-java-files)
8
9LOCAL_MODULE:= com.android.nfc_extras
10
11include $(BUILD_JAVA_LIBRARY)
12
13# put the classes.jar, with full class files instead of classes.dex inside, into the dist directory
14$(call dist-for-goals, droidcore, $(full_classes_jar):com.android.nfc_extras.jar)
15