mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-20 02:28:23 +00:00
dbfeeb71d5
Previously, it would simply output nothing, but it should output an empty string `""`. llvm-svn: 185894
19 lines
512 B
Makefile
19 lines
512 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 ExecutionEngine Support Transforms IR Analysis Bitcode \
|
|
DebugInfo Object
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
clean::
|
|
$(Verb) $(RM) -f *Tests
|