14 lines
296 B
Makefile
14 lines
296 B
Makefile
|
LOCAL_PATH:= $(call my-dir)
|
||
|
|
||
|
# the library
|
||
|
# ============================================================
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
LOCAL_SRC_FILES := \
|
||
|
$(call all-subdir-java-files)
|
||
|
|
||
|
LOCAL_MODULE := android.policy_phone
|
||
|
LOCAL_UNINSTALLABLE_MODULE := true
|
||
|
|
||
|
include $(BUILD_JAVA_LIBRARY)
|