[llvm-commits] CVS: llvm-java/test/Makefile.test

Alkis Evlogimenos alkis at cs.uiuc.edu
Wed Jul 28 03:09:07 PDT 2004



Changes in directory llvm-java/test:

Makefile.test updated: 1.11 -> 1.12

---
Log message:

Create some make output.


---
Diffs of the changes:  (+3 -0)

Index: llvm-java/test/Makefile.test
diff -u llvm-java/test/Makefile.test:1.11 llvm-java/test/Makefile.test:1.12
--- llvm-java/test/Makefile.test:1.11	Sat Jul 24 15:05:42 2004
+++ llvm-java/test/Makefile.test	Wed Jul 28 05:08:57 2004
@@ -21,14 +21,17 @@
 
 #rule to link in runtime to raw bytecode
 %.linked.bc: %.raw.bc $(LEVEL)/runtime/runtime.bc
+	@$(ECHO) Linking $< with the Java runtime
 	$(LLVMTOOLCURRENT)/llvm-link$(EXEEXT) $^ -o $@
 
 # rule to make assembly from bytecode
 %.dis-ll: %.bc
+	@$(ECHO) Disassembling $<
 	$(LDIS) < $< > $@
 
 # rule to compile java source
 Output/%.class: %.java Output/.dir
+	@$(ECHO) Compiling $<
 	$(JAVAC) -d Output $<
 
 # rule to run a .class file with the jvm





More information about the llvm-commits mailing list