summaryrefslogtreecommitdiff
path: root/tools/llc/Makefile
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2005-06-08 22:32:51 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2005-06-08 22:32:51 +0000
commit705b9e55f2ea484c81b9ea4841d2e3c868a313dd (patch)
treec890ac6a21babf2b98ba183b3b217e72003ef886 /tools/llc/Makefile
parent09552bff8de55e056d1387390561f73c02d86b7f (diff)
downloadllvm-705b9e55f2ea484c81b9ea4841d2e3c868a313dd.tar.gz
llvm-705b9e55f2ea484c81b9ea4841d2e3c868a313dd.tar.bz2
llvm-705b9e55f2ea484c81b9ea4841d2e3c868a313dd.tar.xz
make SparcV8 and V9 seperately configurable
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22204 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llc/Makefile')
-rw-r--r--tools/llc/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/llc/Makefile b/tools/llc/Makefile
index 1e50367006..82d6b991d2 100644
--- a/tools/llc/Makefile
+++ b/tools/llc/Makefile
@@ -29,16 +29,20 @@ USEDLIB += LLVMSkeleton
endif
# Check for Sparc target
-ifneq ($(strip $(filter SparcV8,$(TARGETS_TO_BUILD))),)
+ifneq ($(strip $(filter SparcV9,$(TARGETS_TO_BUILD))),)
USEDLIBS += \
LLVMSparcV9ModuloSched \
- LLVMSparcV8 \
LLVMSparcV9 \
LLVMSparcV9RegAlloc \
LLVMSparcV9InstrSched \
LLVMSparcV9LiveVar
endif
+ifneq ($(strip $(filter SparcV8,$(TARGETS_TO_BUILD))),)
+USEDLIBS += LLVMSparcV8
+endif
+
+
#Check for X86 Target
ifneq ($(strip $(filter X86,$(TARGETS_TO_BUILD))),)
USEDLIBS += LLVMX86