8ecdcc7172
Add "V=No" to the make command to silence the make output. This makes it easier to spot warnings or other unexpected messages in the build output.
16 lines
464 B
Makefile
16 lines
464 B
Makefile
GTEST_SRCDIR=gtest
|
|
GTEST_CPP_SRCS=\
|
|
$(GTEST_SRCDIR)/./src/gtest-all.cc\
|
|
|
|
GTEST_OBJS += $(GTEST_CPP_SRCS:.cc=.o)
|
|
OBJS += $(GTEST_OBJS)
|
|
$(GTEST_SRCDIR)/%.o: $(GTEST_SRCDIR)/%.cc
|
|
$(QUIET_CXX)$(CXX) $(CFLAGS) $(CXXFLAGS) $(INCLUDES) $(GTEST_CFLAGS) $(GTEST_INCLUDES) -c $(CXX_O) $<
|
|
|
|
$(LIBPREFIX)gtest.$(LIBSUFFIX): $(GTEST_OBJS)
|
|
$(QUIET)rm -f $@
|
|
$(QUIET_AR)$(AR) $(AR_OPTS) $+
|
|
|
|
libraries: $(LIBPREFIX)gtest.$(LIBSUFFIX)
|
|
LIBRARIES += $(LIBPREFIX)gtest.$(LIBSUFFIX)
|