[llvm-commits] CVS: llvm-java/test/Makefile.test
Alkis Evlogimenos
alkis at cs.uiuc.edu
Thu Dec 2 15:35:00 PST 2004
Changes in directory llvm-java/test:
Makefile.test updated: 1.19 -> 1.20
---
Log message:
Make rule specify that we generating both files with the one command.
---
Diffs of the changes: (+2 -6)
Index: llvm-java/test/Makefile.test
diff -u llvm-java/test/Makefile.test:1.19 llvm-java/test/Makefile.test:1.20
--- llvm-java/test/Makefile.test:1.19 Thu Dec 2 17:24:34 2004
+++ llvm-java/test/Makefile.test Thu Dec 2 17:34:49 2004
@@ -22,12 +22,8 @@
# -simplifycfg -mem2reg -instcombine
# rule to link bytecode with runtime
-%.llvm: %.linked.bc $(LibDir)/libjrt.bca $(EXTRA_OBJS) $(LOPT)
- $(Echo) Optimizing $<
- $(Verb)$(GCCLD) -disable-opt -o=$*.llvm $< -L $(LibDir) -ljrt $(EXTRA_OBJS)
-# rule to link bytecode with runtime
-%.llvm.bc: %.linked.bc $(LibDir)/libjrt.bca $(EXTRA_OBJS) $(LOPT)
- $(Echo) Optimizing $<
+%.llvm %.llvm.bc: %.linked.bc $(LibDir)/libjrt.bca $(EXTRA_OBJS) $(LOPT)
+ $(Echo) Linking $< with the Java runtime
$(Verb)$(GCCLD) -disable-opt -o=$*.llvm $< -L $(LibDir) -ljrt $(EXTRA_OBJS)
# rule to make assembly from bytecode
More information about the llvm-commits
mailing list