Android.mk文件的解析
? ? ? ? ? ? android.mk是描述項目的到建立系統的。其位于jni的文件夾下內容為
# Copyright (C) 2009 The Alndroid 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)
LOCAL_MODULE := hello-jni
LOCAL_SRC_FILES := hello-jni.c
include $(BUILD_SHARED_LIBRARY)
其中#:代表的是注釋,不會被gnu make工具執行。
?Local_Path:一個Android.mk工具總是從該變量的定義開始的,用來定位源文件,使用了一個宏(my-dir)來代表當前目錄。
?Clear_vars:是指定了Clear_vars.mk的位置,其作用是清除除了local_path外的所有local_(name)的變量。這是需要的因為android建立系統是一起執行多個建立文件和模塊的,local_(name)變量時全局的,所以需要清除。
local_module:給模塊定義一個獨特的名字,建立系統會增加相應的前綴和后綴,hello-jni產生一個共享的模塊,libhello-jni.so命名。
local_src_files:使用來產生模塊的源文件。
BUILD_SHARED_LIBRARY:指定了需要共享的類庫build-shared-library.mk文件的位置,其中包含了讓源文件編譯成共享庫的函數。
總結
以上是生活随笔為你收集整理的Android.mk文件的解析的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Android NDK的文件夹
- 下一篇: NDK建立多个共享库