| OLD | NEW |
| (Empty) |
| 1 # A sample Makefile for building both Google Mock and Google Test and | |
| 2 # using them in user tests. This file is self-contained, so you don't | |
| 3 # need to use the Makefile in Google Test's source tree. Please tweak | |
| 4 # it to suit your environment and project. You may want to move it to | |
| 5 # your project's root directory. | |
| 6 # | |
| 7 # SYNOPSIS: | |
| 8 # | |
| 9 # make [all] - makes everything. | |
| 10 # make TARGET - makes the given target. | |
| 11 # make clean - removes all files generated by make. | |
| 12 | |
| 13 # Please tweak the following variable definitions as needed by your | |
| 14 # project, except GMOCK_HEADERS and GTEST_HEADERS, which you can use | |
| 15 # in your own targets but shouldn't modify. | |
| 16 | |
| 17 # Points to the root of Google Test, relative to where this file is. | |
| 18 # Remember to tweak this if you move this file, or if you want to use | |
| 19 # a copy of Google Test at a different location. | |
| 20 GTEST_DIR = ../gtest | |
| 21 | |
| 22 # Points to the root of Google Mock, relative to where this file is. | |
| 23 # Remember to tweak this if you move this file. | |
| 24 GMOCK_DIR = .. | |
| 25 | |
| 26 # Where to find user code. | |
| 27 USER_DIR = ../test | |
| 28 | |
| 29 # Flags passed to the preprocessor. | |
| 30 CPPFLAGS += -I$(GTEST_DIR)/include -I$(GMOCK_DIR)/include | |
| 31 | |
| 32 # Flags passed to the C++ compiler. | |
| 33 CXXFLAGS += -g -Wall -Wextra | |
| 34 | |
| 35 # All tests produced by this Makefile. Remember to add new tests you | |
| 36 # created to the list. | |
| 37 TESTS = gmock_test | |
| 38 | |
| 39 # All Google Test headers. Usually you shouldn't change this | |
| 40 # definition. | |
| 41 GTEST_HEADERS = $(GTEST_DIR)/include/gtest/*.h \ | |
| 42 $(GTEST_DIR)/include/gtest/internal/*.h | |
| 43 | |
| 44 # All Google Mock headers. Note that all Google Test headers are | |
| 45 # included here too, as they are #included by Google Mock headers. | |
| 46 # Usually you shouldn't change this definition. | |
| 47 GMOCK_HEADERS = $(GMOCK_DIR)/include/gmock/*.h \ | |
| 48 $(GMOCK_DIR)/include/gmock/internal/*.h \ | |
| 49 $(GTEST_HEADERS) | |
| 50 | |
| 51 # House-keeping build targets. | |
| 52 | |
| 53 all : $(TESTS) | |
| 54 | |
| 55 clean : | |
| 56 rm -f $(TESTS) gmock.a gmock_main.a *.o | |
| 57 | |
| 58 # Builds gmock.a and gmock_main.a. These libraries contain both | |
| 59 # Google Mock and Google Test. A test should link with either gmock.a | |
| 60 # or gmock_main.a, depending on whether it defines its own main() | |
| 61 # function. It's fine if your test only uses features from Google | |
| 62 # Test (and not Google Mock). | |
| 63 | |
| 64 # Usually you shouldn't tweak such internal variables, indicated by a | |
| 65 # trailing _. | |
| 66 GTEST_SRCS_ = $(GTEST_DIR)/src/*.cc $(GTEST_DIR)/src/*.h $(GTEST_HEADERS) | |
| 67 GMOCK_SRCS_ = $(GMOCK_DIR)/src/*.cc $(GMOCK_HEADERS) | |
| 68 | |
| 69 # For simplicity and to avoid depending on implementation details of | |
| 70 # Google Mock and Google Test, the dependencies specified below are | |
| 71 # conservative and not optimized. This is fine as Google Mock and | |
| 72 # Google Test compile fast and for ordinary users their source rarely | |
| 73 # changes. | |
| 74 gtest-all.o : $(GTEST_SRCS_) | |
| 75 $(CXX) $(CPPFLAGS) -I$(GTEST_DIR) -I$(GMOCK_DIR) $(CXXFLAGS) \ | |
| 76 -c $(GTEST_DIR)/src/gtest-all.cc | |
| 77 | |
| 78 gmock-all.o : $(GMOCK_SRCS_) | |
| 79 $(CXX) $(CPPFLAGS) -I$(GTEST_DIR) -I$(GMOCK_DIR) $(CXXFLAGS) \ | |
| 80 -c $(GMOCK_DIR)/src/gmock-all.cc | |
| 81 | |
| 82 gmock_main.o : $(GMOCK_SRCS_) | |
| 83 $(CXX) $(CPPFLAGS) -I$(GTEST_DIR) -I$(GMOCK_DIR) $(CXXFLAGS) \ | |
| 84 -c $(GMOCK_DIR)/src/gmock_main.cc | |
| 85 | |
| 86 gmock.a : gmock-all.o gtest-all.o | |
| 87 $(AR) $(ARFLAGS) $@ $^ | |
| 88 | |
| 89 gmock_main.a : gmock-all.o gtest-all.o gmock_main.o | |
| 90 $(AR) $(ARFLAGS) $@ $^ | |
| 91 | |
| 92 # Builds a sample test. | |
| 93 | |
| 94 gmock_test.o : $(USER_DIR)/gmock_test.cc $(GMOCK_HEADERS) | |
| 95 $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(USER_DIR)/gmock_test.cc | |
| 96 | |
| 97 gmock_test : gmock_test.o gmock_main.a | |
| 98 $(CXX) $(CPPFLAGS) $(CXXFLAGS) -lpthread $^ -o $@ | |
| OLD | NEW |