2009-01-01 03:24:48 +01:00
|
|
|
##===- unittests/ADT/Makefile ------------------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
|
|
|
LEVEL = ../..
|
|
|
|
TESTNAME = ADT
|
2010-09-27 17:50:08 +02:00
|
|
|
LINK_COMPONENTS := support
|
2009-01-01 03:24:48 +01:00
|
|
|
|
|
|
|
include $(LEVEL)/Makefile.config
|
2010-02-09 23:15:27 +01:00
|
|
|
|
|
|
|
# Xfail BitVectorTest for now on PPC Darwin. 7598360.
|
|
|
|
ifeq ($(ARCH),PowerPC)
|
|
|
|
ifeq ($(TARGET_OS),Darwin)
|
|
|
|
CPP.Flags += -DXFAIL
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2009-01-01 03:24:48 +01:00
|
|
|
include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest
|