Makefile revision 79d1dc69ac0d74dad897125ed15e488b80aca559
1##===- unittests/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
10LEVEL = ..
11include $(LEVEL)/Makefile.config
12
13LIBRARYNAME = UnitTestMain
14BUILD_ARCHIVE = 1
15CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include/
16CPP.Flags += -Wno-variadic-macros
17
18PARALLEL_DIRS = ADT
19
20include $(LEVEL)/Makefile.common
21
22clean::
23	$(RM) -f *Tests
24