[llvm-commits] CVS: llvm/projects/Stacker/tools/stkrc/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Wed Oct 26 17:53:27 PDT 2005
Changes in directory llvm/projects/Stacker/tools/stkrc:
Makefile updated: 1.8 -> 1.9
---
Log message:
Make sure to build things in the right order, build with the .o file, not the
.a file to unbreak the build after john's change
---
Diffs of the changes: (+2 -2)
Makefile | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/projects/Stacker/tools/stkrc/Makefile
diff -u llvm/projects/Stacker/tools/stkrc/Makefile:1.8 llvm/projects/Stacker/tools/stkrc/Makefile:1.9
--- llvm/projects/Stacker/tools/stkrc/Makefile:1.8 Sun Oct 23 20:52:15 2005
+++ llvm/projects/Stacker/tools/stkrc/Makefile Wed Oct 26 19:53:16 2005
@@ -9,8 +9,8 @@
# Give the name of a library. This will build a dynamic version.
#
TOOLNAME = stkrc
-LLVMLIBS = LLVMAsmParser LLVMBCWriter LLVMTransforms.a LLVMipo.a LLVMipa.a \
- LLVMScalarOpts.a LLVMAnalysis.a LLVMTarget.a LLVMTransformUtils.a \
+LLVMLIBS = LLVMAsmParser LLVMBCWriter LLVMipo.a \
+ LLVMScalarOpts.a LLVMTransforms.a LLVMTransformUtils LLVMipa.a LLVMAnalysis.a LLVMTarget.a \
LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a
CONFIG_FILES = st
EXTRA_DIST = st
More information about the llvm-commits
mailing list