OSDN Git Service

22bfd77cb4d123d7d25618a48bdee8aec923ace7
[android-x86/system-extras.git] / simpleperf / Android.mk
1 #
2 # Copyright (C) 2015 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 #
16
17 LOCAL_PATH := $(call my-dir)
18
19 simpleperf_src_files := \
20   cmd_help.cpp \
21   cmd_list.cpp \
22   command.cpp \
23   event_attr.cpp \
24   event_fd.cpp \
25   event_type.cpp \
26   main.cpp \
27   utils.cpp \
28
29 simpleperf_cppflags := -std=c++11 -Wall -Wextra -Werror -Wunused
30
31 include $(CLEAR_VARS)
32 LOCAL_CLANG := true
33 LOCAL_CPPFLAGS := $(simpleperf_cppflags)
34 LOCAL_SRC_FILES := $(simpleperf_src_files)
35 LOCAL_STATIC_LIBRARIES := libbase libcutils liblog
36 LOCAL_MODULE := simpleperf
37 LOCAL_MODULE_TAGS := optional
38 LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
39 include $(BUILD_EXECUTABLE)
40
41 ifeq ($(HOST_OS),linux)
42 include $(CLEAR_VARS)
43 LOCAL_CLANG := true
44 LOCAL_CPPFLAGS := $(simpleperf_cppflags)
45 LOCAL_SRC_FILES := $(simpleperf_src_files)
46 LOCAL_STATIC_LIBRARIES := libbase libcutils liblog
47 LOCAL_LDLIBS := -lrt
48 LOCAL_MODULE := simpleperf
49 LOCAL_MODULE_TAGS := optional
50 LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
51 include $(BUILD_HOST_EXECUTABLE)
52 endif