Android.mk revision 5187818895c4c5f650a611c40531b1dff7764c18
1a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root#
2a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root# Copyright (C) 2009 The Android Open Source Project
3a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root#
4a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root# Licensed under the Apache License, Version 2.0 (the "License");
5a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root# you may not use this file except in compliance with the License.
6a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root# You may obtain a copy of the License at
7a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root#
8a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root#      http://www.apache.org/licenses/LICENSE-2.0
9a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root#
10a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root# Unless required by applicable law or agreed to in writing, software
11a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root# distributed under the License is distributed on an "AS IS" BASIS,
12a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root# See the License for the specific language governing permissions and
14a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root# limitations under the License.
15a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root#
16a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root
17a91203b08350b2fc7efda5b1eab39e7541476b3aKenny RootLOCAL_PATH := $(call my-dir)
18a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root
19a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Rootinclude $(CLEAR_VARS)
20a91203b08350b2fc7efda5b1eab39e7541476b3aKenny RootLOCAL_SRC_FILES := keystore.cpp
21a91203b08350b2fc7efda5b1eab39e7541476b3aKenny RootLOCAL_C_INCLUDES := external/openssl/include
22a91203b08350b2fc7efda5b1eab39e7541476b3aKenny RootLOCAL_SHARED_LIBRARIES := libcutils libcrypto
23a91203b08350b2fc7efda5b1eab39e7541476b3aKenny RootLOCAL_MODULE := keystore
24a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Rootinclude $(BUILD_EXECUTABLE)
25a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Root
26a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Rootinclude $(CLEAR_VARS)
27a91203b08350b2fc7efda5b1eab39e7541476b3aKenny RootLOCAL_SRC_FILES := keystore_cli.cpp
28a91203b08350b2fc7efda5b1eab39e7541476b3aKenny RootLOCAL_C_INCLUDES := external/openssl/include
29a91203b08350b2fc7efda5b1eab39e7541476b3aKenny RootLOCAL_SHARED_LIBRARIES := libcutils libcrypto
30a91203b08350b2fc7efda5b1eab39e7541476b3aKenny RootLOCAL_MODULE := keystore_cli
31a91203b08350b2fc7efda5b1eab39e7541476b3aKenny RootLOCAL_MODULE_TAGS := debug
32a91203b08350b2fc7efda5b1eab39e7541476b3aKenny Rootinclude $(BUILD_EXECUTABLE)
335187818895c4c5f650a611c40531b1dff7764c18Kenny Root
345187818895c4c5f650a611c40531b1dff7764c18Kenny Root# Library for keystore clients
355187818895c4c5f650a611c40531b1dff7764c18Kenny Rootinclude $(CLEAR_VARS)
365187818895c4c5f650a611c40531b1dff7764c18Kenny RootLOCAL_SRC_FILES := keystore_client.cpp
375187818895c4c5f650a611c40531b1dff7764c18Kenny RootLOCAL_SHARED_LIBRARIES := libcutils
385187818895c4c5f650a611c40531b1dff7764c18Kenny RootLOCAL_MODULE := libkeystore_client
395187818895c4c5f650a611c40531b1dff7764c18Kenny RootLOCAL_MODULE_TAGS := optional
405187818895c4c5f650a611c40531b1dff7764c18Kenny Rootinclude $(BUILD_SHARED_LIBRARY)