blob: 7c498785155eadef4d5f5874d22573c7df5a6c1d [file] [log] [blame]
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
CXX ?= g++
BASE_VER ?= 369476
PKG_CONFIG ?= pkg-config
PC_DEPS = openssl
PC_CFLAGS := $(shell $(PKG_CONFIG) --cflags $(PC_DEPS))
PC_LIBS := $(shell $(PKG_CONFIG) --libs $(PC_DEPS))
PROTOBUF = ../../third_party/protobuf
GOOGLETEST = ../../third_party/googletest
CXXFLAGS += -std=c++11 -g -Wall -Werror -Wall -Wno-error
CPPFLAGS += -Imybase \
-Icompat/non_cros \
-I../../third_party \
-I. -I.. $(PC_CFLAGS) $(PROTOBUF_CFLAGS) $(GTEST_INCLUDES)
LDLIBS += -lpthread -lgcov -lelf $(PC_LIBS) $(PROTOBUF_LIBS)
MAIN_SOURCES = quipper.cc perf_converter.cc
PROGRAMS = $(MAIN_SOURCES:.cc=)
LIBRARY_SOURCES = \
address_mapper.cc binary_data_utils.cc buffer_reader.cc buffer_writer.cc \
conversion_utils.cc compat/log_level.cc data_reader.cc \
data_writer.cc dso.cc file_reader.cc file_utils.cc \
mybase/base/logging.cc perf_option_parser.cc perf_data_utils.cc \
perf_parser.cc perf_protobuf_io.cc perf_reader.cc perf_recorder.cc \
perf_serializer.cc perf_stat_parser.cc run_command.cc \
sample_info_reader.cc scoped_temp_path.cc string_utils.cc \
huge_page_deducer.cc
GENERATED_SOURCES = perf_data.pb.cc perf_stat.pb.cc
GENERATED_HEADERS = $(GENERATED_SOURCES:.pb.cc=.pb.h)
COMMON_SOURCES = $(LIBRARY_SOURCES) $(GENERATED_SOURCES)
COMMON_OBJECTS = $(COMMON_SOURCES:.cc=.o)
TEST_COMMON_SOURCES = \
dso_test_utils.cc perf_test_files.cc test_perf_data.cc test_utils.cc
TEST_COMMON_OBJECTS = $(TEST_COMMON_SOURCES:.cc=.o)
TESTDATA_DIR = testdata
INTEGRATION_TEST_SOURCES = conversion_utils_test.cc
PERF_RECORDER_TEST_SOURCES = perf_recorder_test.cc
UNIT_TEST_SOURCES = \
address_mapper_test.cc binary_data_utils_test.cc buffer_reader_test.cc \
buffer_writer_test.cc file_reader_test.cc \
perf_data_utils_test.cc \
perf_option_parser_test.cc perf_parser_test.cc perf_reader_test.cc \
perf_serializer_test.cc perf_stat_parser_test.cc run_command_test.cc \
sample_info_reader_test.cc scoped_temp_path_test.cc
TEST_SOURCES = $(INTEGRATION_TEST_SOURCES) $(PERF_RECORDER_TEST_SOURCES) \
$(UNIT_TEST_SOURCES) $(TEST_COMMON_SOURCES) test_runner.cc
TEST_OBJECTS = $(TEST_SOURCES:.cc=.o)
TESTS = integration_tests perf_recorder_test unit_tests
ALL_SOURCES = $(MAIN_SOURCES) $(COMMON_SOURCES) $(TEST_SOURCES)
all: $(PROGRAMS) $(TESTS)
@echo Sources compiled!
# Protobuf dependence configuration
ifeq ($(wildcard ${PROTOBUF}/src/google/protobuf/descriptor.pb.h),)
# Protobuf module hasn't been populated, attempt using local installation.
PROTOC = protoc
PROTOBUF_DEP =
PROTOBUF_CFLAGS := $(shell $(PKG_CONFIG) --cflags protobuf)
PROTOBUF_LIBS := $(shell $(PKG_CONFIG) --libs protobuf)
else
# Use protobuf compiler and libraries from submodule.
PROTOC = ${PROTOBUF}/src/protoc
PROTOBUF_CFLAGS := -I${PROTOBUF}/src
PROTOBUF_LIBS := ${PROTOBUF}/src/.libs/libprotobuf.a -lz
PROTOBUF_DEP := ${PROTOBUF}/src/.libs/libprotobuf.a
endif
${PROTOBUF}/configure:
echo "[AUTOGEN] Preparing protobuf"
(cd ${PROTOBUF} ; autoreconf -f -i -Wall,no-obsolete)
${PROTOBUF}/src/.libs/libprotobuf.a: ${PROTOBUF}/configure
echo "[MAKE] Building protobuf"
(cd ${PROTOBUF} ; CC="$(CC)" CXX="$(CXX)" LDFLAGS="$(LDFLAGS_$(CONFIG)) -g \
$(PROTOBUF_LDFLAGS_EXTRA)" CPPFLAGS="$(PIC_CPPFLAGS) $(CPPFLAGS_$(CONFIG)) \
-g $(PROTOBUF_CPPFLAGS_EXTRA)" ./configure --disable-shared --enable-static \
$(PROTOBUF_CONFIG_OPTS))
$(MAKE) -C ${PROTOBUF} clean
$(MAKE) -C ${PROTOBUF}
# Googletest dependence configuration
ifeq ($(wildcard ${GOOGLETEST}/googletest/include/gtest/gtest.h),)
# Use local gtest includes, already on the system path
GTEST_INCLUDES =
GTEST_LIBS = -lgtest
else
# Pick up gtest includes from submodule.
GTEST_INCLUDES = -I${GOOGLETEST}/googletest/include
GTEST_LIBS = -I${GOOGLETEST}/googletest ${GOOGLETEST}/googletest/src/gtest-all.cc
endif
ifneq ($(MAKECMDGOALS),clean)
-include $(ALL_SOURCES:.cc=.d)
endif
# Taken from:
# http://www.gnu.org/software/make/manual/make.html#Automatic-Prerequisites
%.d: %.cc $(GENERATED_HEADERS)
@set -e; rm -f $@; \
$(CXX) -MM $(CPPFLAGS) $(CXXFLAGS) $< > $@.$$$$; \
sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \
rm -f $@.$$$$
# Rule for compiling protobufs.
%.pb.h %.pb.cc: %.proto $(PROTOBUF_DEP)
$(PROTOC) --cpp_out=. -I`dirname $<` $<
# Do not remove protobuf headers that were generated as dependencies of other
# modules.
.SECONDARY: $(GENERATED_HEADERS)
$(PROGRAMS): %: %.o $(COMMON_OBJECTS)
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS)
INTEGRATION_TEST_OBJECTS = $(INTEGRATION_TEST_SOURCES:.cc=.o) test_runner.o
integration_tests: LDLIBS += $(GTEST_LIBS)
integration_tests: %: $(COMMON_OBJECTS) $(TEST_COMMON_OBJECTS) \
$(INTEGRATION_TEST_OBJECTS) | $(TESTDATA_DIR)
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS)
PERF_RECORDER_TEST_OBJECTS = $(PERF_RECORDER_TEST_SOURCES:.cc=.o)
perf_recorder_test: LDLIBS += $(GTEST_LIBS)
perf_recorder_test: %: $(COMMON_OBJECTS) $(TEST_COMMON_OBJECTS) \
$(PERF_RECORDER_TEST_OBJECTS)
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS)
UNIT_TEST_OBJECTS = $(UNIT_TEST_SOURCES:.cc=.o) test_runner.o
unit_tests: LDLIBS += $(GTEST_LIBS) -lcap
unit_tests: %: $(COMMON_OBJECTS) $(TEST_COMMON_OBJECTS) \
$(UNIT_TEST_OBJECTS) | $(TESTDATA_DIR)
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS)
# With large perf.data files, the tests will spew a lot of logging. The
# following calls will pipe the logging to a log file. To see test logging,
# build with 'FEATURES="test noclean"' and go to the build directory.
check: $(TESTS)
for test in $(TESTS); do \
./$$test 2> ./$$test.stderr.log && continue; \
echo "See $$test.stderr.log for errors"; \
exit 1; \
done
clean:
rm -f *.o *.d *.d.* *.a $(PROGRAMS) $(TESTS) $(GENERATED_SOURCES) \
$(GENERATED_HEADERS);