mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
fe32bb7833
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! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199929 91177308-0d34-0410-b5e6-96231b3b80d8
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
|