Moved Google Test code up one directory so that we can use a standard LLVM
[oota-llvm.git] / utils / unittest / googletest / Makefile
1 ##===- utils/unittest/googletest/Makefile ------------------*- Makefile -*-===##
2 #
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
7 #
8 ##===----------------------------------------------------------------------===##
9
10 LEVEL := ../../..
11 include $(LEVEL)/Makefile.config
12
13 LIBRARYNAME = GoogleTest
14 BUILD_ARCHIVE = 1
15 SOURCES = gtest-all.cc
16 CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/
17 CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include/
18 CPP.Flags += -Wno-missing-field-initializers -Wno-variadic-macros
19
20 include $(LEVEL)/Makefile.common