7 # Bring in the default rules
8 include ../../buildlib/defaults.mak
11 ifeq (file-okay,$(shell $(CC) -I $(BASE)/build/include -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 -lapt-inst -pthread $(LIB)/gtest.a
19 LIB_MAKES = apt-pkg/makefile apt-private/makefile apt-inst/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
46 # All Google Test headers. Usually you shouldn't change this definition.
47 GTEST_HEADERS = /usr/include/gtest/*.h \
48 /usr/include/gtest/internal/*.h
50 # House-keeping build targets.
51 .PHONY: clean/gtest veryclean/gtest
55 veryclean: veryclean/gtest
56 veryclean/gtest: clean/gtest
59 # Usually you shouldn't tweak such internal variables, indicated by a
61 GTEST_SRCS_ = $(GTEST_DIR)/src/*.cc $(GTEST_DIR)/src/*.h $(GTEST_HEADERS)
64 # For simplicity and to avoid depending on Google Test's
65 # implementation details, the dependencies specified below are
66 # conservative and not optimized. This is fine as Google Test
67 # compiles fast and for ordinary users its source rarely changes.
68 $(gtest-OBJS): $(GTEST_SRCS_)
70 $(CXX) $(CPPFLAGS) -I$(GTEST_DIR) $(CXXFLAGS) -c -o $@ $(GTEST_DIR)/src/$(notdir $(basename $@)).cc
72 $(LIB)/gtest.a: $(OBJ)/gtest-all.o
73 echo Building static library $@
75 $(AR) $(ARFLAGS) $@ $^
79 @echo "APT uses Googles C++ testing framework for its unit tests"
80 @echo "On Debian systems this is available in the 'libgtest-dev' package."
81 @echo "Please install it before attempting to run the unit tests."
82 $(CC) -I $(BASE)/build/include -M gtest_runner.cc