7 # Bring in the default rules
8 include ../../buildlib/defaults.mak
11 ifeq (file-okay,$(shell $(CC) -M gtest_runner.cc >/dev/null 2>&1 && echo 'file-okay'))
12 test: $(BIN)/gtest$(BASENAME)
13 MALLOC_PERTURB_=21 MALLOC_CHECK_=2 LD_LIBRARY_PATH=$(LIB) $(BIN)/gtest$(BASENAME)
15 $(BIN)/gtest$(BASENAME): $(LIB)/gtest.a
17 PROGRAM = gtest${BASENAME}
18 SLIBS = -lapt-pkg -lapt-private -pthread $(LIB)/gtest.a
19 LIB_MAKES = apt-pkg/makefile apt-private/makefile
20 SOURCE = gtest_runner.cc $(wildcard *-helpers.cc *_test.cc)
24 MKDIRS += $(OBJ) $(LIB)
27 gtest-OBJS := $(addprefix $(OBJ)/,$(addsuffix .o,$(SOURCE)))
29 # The rest of the file is based on the example found in
30 # /usr/share/doc/libgtest-dev/examples/make/Makefile
31 GTEST_DIR = /usr/src/gtest
33 # Flags passed to the preprocessor.
34 # Set Google Test's header directory as a system directory, such that
35 # the compiler doesn't generate warnings in Google Test headers.
36 CPPFLAGS += -isystem $(GTEST_DIR)/include
38 # Flags passed to the C++ compiler.
40 # disable some flags for gtest again
41 CXXFLAGS+= -Wno-missing-declarations
42 CXXFLAGS+= -Wno-missing-field-initializers
43 CXXFLAGS+= -Wno-suggest-attribute=pure -Wno-suggest-attribute=const -Wno-suggest-attribute=noreturn
45 # All Google Test headers. Usually you shouldn't change this definition.
46 GTEST_HEADERS = /usr/include/gtest/*.h \
47 /usr/include/gtest/internal/*.h
49 # House-keeping build targets.
50 .PHONY: clean/gtest veryclean/gtest
54 veryclean: veryclean/gtest
55 veryclean/gtest: clean/gtest
58 # Usually you shouldn't tweak such internal variables, indicated by a
60 GTEST_SRCS_ = $(GTEST_DIR)/src/*.cc $(GTEST_DIR)/src/*.h $(GTEST_HEADERS)
63 # For simplicity and to avoid depending on Google Test's
64 # implementation details, the dependencies specified below are
65 # conservative and not optimized. This is fine as Google Test
66 # compiles fast and for ordinary users its source rarely changes.
67 $(gtest-OBJS): $(GTEST_SRCS_)
69 $(CXX) $(CPPFLAGS) -I$(GTEST_DIR) $(CXXFLAGS) -c -o $@ $(GTEST_DIR)/src/$(notdir $(basename $@)).cc
71 $(LIB)/gtest.a: $(OBJ)/gtest-all.o
72 echo Building static library $@
74 $(AR) $(ARFLAGS) $@ $^
78 @echo "APT uses Googles C++ testing framework for its unit tests"
79 @echo "On Debian systems this is available in the 'libgtest-dev' package."
80 @echo "Please install it before attempting to run the unit tests."