Android.mk revision 8d1fdb509305e93eb46d45a6dcd34bedd6dc0742
1#
2# Copyright (C) 2008-2014 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#      http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16LOCAL_PATH := $(my-dir)
17include $(CLEAR_VARS)
18
19liblog_sources := logd_write.c
20
21# some files must not be compiled when building against Mingw
22# they correspond to features not used by our host development tools
23# which are also hard or even impossible to port to native Win32
24WITH_MINGW :=
25ifeq ($(HOST_OS),windows)
26    ifeq ($(strip $(USE_CYGWIN)),)
27        WITH_MINGW := true
28    endif
29endif
30# USE_MINGW is defined when we build against Mingw on Linux
31ifneq ($(strip $(USE_MINGW)),)
32    WITH_MINGW := true
33endif
34
35ifndef WITH_MINGW
36    liblog_sources += \
37        logprint.c \
38        event_tag_map.c
39else
40    liblog_sources += \
41        uio.c
42endif
43
44liblog_host_sources := $(liblog_sources) fake_log_device.c
45liblog_target_sources = $(liblog_sources) log_read.c
46
47# Shared and static library for host
48# ========================================================
49LOCAL_MODULE := liblog
50LOCAL_SRC_FILES := $(liblog_host_sources)
51LOCAL_LDLIBS := -lpthread
52LOCAL_CFLAGS := -DFAKE_LOG_DEVICE=1
53include $(BUILD_HOST_STATIC_LIBRARY)
54
55include $(CLEAR_VARS)
56LOCAL_MODULE := liblog
57LOCAL_WHOLE_STATIC_LIBRARIES := liblog
58include $(BUILD_HOST_SHARED_LIBRARY)
59
60
61# Static library for host, 64-bit
62# ========================================================
63include $(CLEAR_VARS)
64LOCAL_MODULE := lib64log
65LOCAL_SRC_FILES := $(liblog_host_sources)
66LOCAL_LDLIBS := -lpthread
67LOCAL_CFLAGS := -DFAKE_LOG_DEVICE=1 -m64
68include $(BUILD_HOST_STATIC_LIBRARY)
69
70# Shared and static library for target
71# ========================================================
72include $(CLEAR_VARS)
73LOCAL_MODULE := liblog
74LOCAL_SRC_FILES := $(liblog_target_sources)
75include $(BUILD_STATIC_LIBRARY)
76
77include $(CLEAR_VARS)
78LOCAL_MODULE := liblog
79LOCAL_WHOLE_STATIC_LIBRARIES := liblog
80include $(BUILD_SHARED_LIBRARY)
81
82include $(call first-makefiles-under,$(LOCAL_PATH))
83