From: Alexey Samsonov Date: Thu, 6 Dec 2012 23:59:54 +0000 (+0000) Subject: Try to unbreak makefile build by excluding gtest-all.cc source X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=e40aecf037a60e2c30f29c322eb09bd7da0fe0a9;p=oota-llvm.git Try to unbreak makefile build by excluding gtest-all.cc source git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169564 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/unittest/googletest/Makefile b/utils/unittest/googletest/Makefile index 22c8f36fccb..280b012e67e 100644 --- a/utils/unittest/googletest/Makefile +++ b/utils/unittest/googletest/Makefile @@ -36,4 +36,6 @@ endif NO_INSTALL = 1 +Source = $(filter-out gtest-all.cc,$(wildcard *.cc)) + include $(LEVEL)/Makefile.common