[llvm-commits] CVS: llvm/tools/llc/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Thu Aug 3 09:59:33 PDT 2006
Changes in directory llvm/tools/llc:
Makefile updated: 1.87 -> 1.88
---
Log message:
Now that SparcV9 is gone, this logical can be simplified significantly.
---
Diffs of the changes: (+1 -39)
Makefile | 40 +---------------------------------------
1 files changed, 1 insertion(+), 39 deletions(-)
Index: llvm/tools/llc/Makefile
diff -u llvm/tools/llc/Makefile:1.87 llvm/tools/llc/Makefile:1.88
--- llvm/tools/llc/Makefile:1.87 Fri Jul 21 14:44:55 2006
+++ llvm/tools/llc/Makefile Thu Aug 3 11:59:17 2006
@@ -16,45 +16,7 @@
# 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 \
More information about the llvm-commits
mailing list