mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
c43d8c9237
Stray *Tests might stay after reverting. FIXME: Could we apply this feature to clang/unittests? FIXME: Implement this feature to CMake. llvm-svn: 197661
20 lines
583 B
Makefile
20 lines
583 B
Makefile
##===- 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 = ..
|
|
|
|
PARALLEL_DIRS = ADT Analysis Bitcode CodeGen DebugInfo \
|
|
ExecutionEngine IR MC Object Option Support Transforms
|
|
|
|
include $(LEVEL)/Makefile.config
|
|
include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest
|
|
|
|
clean::
|
|
$(Verb) $(RM) -f *Tests
|