unittest/googletest/Makefile: Unbreak out-of-tree build.

- Use SOURCES instead of Source. See Makefile.rules and MakefileGuide.html.
  - Don't assume the current directory. $(wildcard *.cc) doesn't match anything on corresponding build directory.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169568 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2012-12-07 01:25:45 +00:00
parent 105fdbb131
commit d33d2210dc
1 changed files with 1 additions and 1 deletions

View File

@ -36,6 +36,6 @@ endif
NO_INSTALL = 1
Source = $(filter-out gtest-all.cc,$(wildcard *.cc))
SOURCES = $(filter-out gtest-all.cc, $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cc)))
include $(LEVEL)/Makefile.common