14 lines
269 B
Makefile
14 lines
269 B
Makefile
|
# Copyright 2011 The Android Open Source Project
|
||
|
#
|
||
|
LOCAL_PATH:= $(call my-dir)
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
include $(CLEAR_VARS)
|
||
|
LOCAL_MODULE := settings
|
||
|
LOCAL_SRC_FILES := settings
|
||
|
LOCAL_MODULE_CLASS := EXECUTABLES
|
||
|
LOCAL_MODULE_TAGS := optional
|
||
|
include $(BUILD_PREBUILT)
|
||
|
|
||
|
|