blob: 20335083a30f2d73b182021999aa5017e4d6600c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(call all-subdir-java-files)
LOCAL_MODULE:= com.android.nfc_extras
include $(BUILD_JAVA_LIBRARY)
# put the com.android.nfc_extras.jar into the dist directory
$(call dist-for-goals, droidcore, $(LOCAL_BUILT_MODULE):com.android.nfc_extras.jar)
|