freebsd-nq/unittests/ADT/Makefile

24 lines
619 B
Makefile
Raw Normal View History

2009-06-02 17:52:33 +00: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
LINK_COMPONENTS := support
2009-06-02 17:52:33 +00:00
include $(LEVEL)/Makefile.config
2010-02-16 09:30:23 +00:00
# Xfail BitVectorTest for now on PPC Darwin. 7598360.
ifeq ($(ARCH),PowerPC)
ifeq ($(TARGET_OS),Darwin)
CPP.Flags += -DXFAIL
endif
endif
2009-06-02 17:52:33 +00:00
include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest