From 6db0f55e66103ecd032860a26b632ab62b502615 Mon Sep 17 00:00:00 2001 From: Justin Hammond Date: Wed, 8 May 2019 18:44:17 +0800 Subject: [PATCH] fix up tests again --- cpp/test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/test/Makefile b/cpp/test/Makefile index 26853feb..e5ba44b5 100644 --- a/cpp/test/Makefile +++ b/cpp/test/Makefile @@ -66,12 +66,12 @@ $(OBJDIR)/%.o : %.cc @$(SED) -e 's/.*://' -e 's/\\$$//' < $(DEPDIR)/$*.d.tmp | fmt -1 | \ $(SED) -e 's/^ *//' -e 's/$$/:/' >> $(DEPDIR)/.$*.d; @rm -f $(DEPDIR)/$*.d.tmp - $(CXX) $(CFLAGS) $(TARCH) $(INCLUDES) -o $@ $< + @$(CXX) $(CFLAGS) $(TARCH) $(INCLUDES) -o $@ $< $(top_builddir)/gtest-main: $(patsubst %.cc,$(OBJDIR)/%.o,$(gtestsrc)) \ $(patsubst %.cpp,$(OBJDIR)/%.o,$(testsrc)) @echo "Linking $@" - $(LD) $(LDFLAGS) $(TARCH) -o $@ $+ $(LIBS) -pthread + @$(LD) $(LDFLAGS) $(TARCH) -o $@ $+ $(LIBS) -pthread test: $(top_builddir)/gtest-main $(top_builddir)/gtest-main