mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
5041573a0f
Eliminates the LLI_BUILDING_CHILD build hack from r199885. Also add a FIXME to remove code that tricks the tests into passing when the feature fails to work. Please don't do stuff like this, the tests exist for a reason! llvm-svn: 199929
20 lines
530 B
Makefile
20 lines
530 B
Makefile
##===- tools/lli/Makefile ------------------------------*- Makefile -*-===##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
LEVEL := ../../..
|
|
TOOLNAME := lli-child-target
|
|
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
LINK_COMPONENTS := support
|
|
|
|
SOURCES := ChildTarget.cpp ../RemoteTarget.cpp
|
|
|
|
include $(LLVM_SRC_ROOT)/Makefile.rules
|