diff options
author | Chris Lattner <sabre@nondot.org> | 2006-08-03 16:59:17 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-08-03 16:59:17 +0000 |
commit | 202ae321f8c920a2f9be116680ebd637e9fea908 (patch) | |
tree | 33e8a27a5a8ccd5f9652edbebf70e86040a8a58e /tools/llc/Makefile | |
parent | a5eee6e5868877ec82f33b428202ecd0c586b3a0 (diff) | |
download | external_llvm-202ae321f8c920a2f9be116680ebd637e9fea908.zip external_llvm-202ae321f8c920a2f9be116680ebd637e9fea908.tar.gz external_llvm-202ae321f8c920a2f9be116680ebd637e9fea908.tar.bz2 |
Now that SparcV9 is gone, this logical can be simplified significantly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29498 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llc/Makefile')
-rw-r--r-- | tools/llc/Makefile | 40 |
1 files changed, 1 insertions, 39 deletions
diff --git a/tools/llc/Makefile b/tools/llc/Makefile index d20c307..c34616f 100644 --- a/tools/llc/Makefile +++ b/tools/llc/Makefile @@ -16,45 +16,7 @@ REQUIRES_EH := 1 # early so we can set up USEDLIBS properly before includeing Makefile.rules include $(LEVEL)/Makefile.config -# Initialize the USEDLIBS so we can add to it -USEDLIBS := - -# Check for LLVMCBackend target -ifneq ($(strip $(filter CBackend,$(TARGETS_TO_BUILD))),) -USEDLIBS += LLVMCBackend -endif - -ifneq ($(strip $(filter Sparc,$(TARGETS_TO_BUILD))),) -USEDLIBS += LLVMSparc -endif - - -#Check for X86 Target -ifneq ($(strip $(filter X86,$(TARGETS_TO_BUILD))),) -USEDLIBS += LLVMX86 -endif - -#Check for PowerPC Target -ifneq ($(strip $(filter PowerPC,$(TARGETS_TO_BUILD))),) -USEDLIBS += LLVMPowerPC -endif - -#Check for Alpha Target -ifneq ($(strip $(filter Alpha,$(TARGETS_TO_BUILD))),) -USEDLIBS += LLVMAlpha -endif - -#Check for IA64 Target -ifneq ($(strip $(filter IA64,$(TARGETS_TO_BUILD))),) -USEDLIBS += LLVMIA64 -endif - -#Check for ARM Target -ifneq ($(strip $(filter ARM,$(TARGETS_TO_BUILD))),) -USEDLIBS += LLVMARM -endif - -USEDLIBS += \ +USEDLIBS := $(addprefix LLVM,$(TARGETS_TO_BUILD)) \ LLVMCodeGen.a \ LLVMSelectionDAG.a \ LLVMTarget.a \ |