2009-01-01 02:24:48 +00:00
|
|
|
##===- unittests/Makefile ----------------------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
|
|
|
LEVEL = ..
|
2009-01-04 23:12:21 +00:00
|
|
|
|
2009-01-01 02:24:48 +00:00
|
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
|
|
|
|
LIBRARYNAME = UnitTestMain
|
|
|
|
BUILD_ARCHIVE = 1
|
2009-07-27 09:39:18 +00:00
|
|
|
CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include
|
2009-01-01 02:24:48 +00:00
|
|
|
CPP.Flags += -Wno-variadic-macros
|
|
|
|
|
2009-08-01 19:07:29 +00:00
|
|
|
PARALLEL_DIRS = ADT ExecutionEngine Support VMCore
|
2009-01-01 02:24:48 +00:00
|
|
|
|
|
|
|
include $(LEVEL)/Makefile.common
|
2009-01-02 12:25:22 +00:00
|
|
|
|
|
|
|
clean::
|
2009-01-04 23:12:21 +00:00
|
|
|
$(Verb) $(RM) -f *Tests
|