2014-01-13 19:04:25 +01:00
|
|
|
# Copyright (C) 2014 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
2015-05-06 03:36:45 +02:00
|
|
|
LOCAL_SRC_FILES := uncrypt.cpp
|
2015-08-07 03:35:05 +02:00
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/..
|
2014-01-13 19:04:25 +01:00
|
|
|
LOCAL_MODULE := uncrypt
|
2016-06-25 03:22:02 +02:00
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
|
|
libbootloader_message \
|
|
|
|
libbase \
|
|
|
|
liblog \
|
|
|
|
libfs_mgr \
|
|
|
|
libcutils
|
2017-08-28 23:15:07 +02:00
|
|
|
LOCAL_CFLAGS := -Wall -Werror
|
2015-09-04 01:32:39 +02:00
|
|
|
LOCAL_INIT_RC := uncrypt.rc
|
|
|
|
|
2014-01-13 19:04:25 +01:00
|
|
|
include $(BUILD_EXECUTABLE)
|