[llvm-commits] CVS: llvm-java/test/Makefile.test
Alkis Evlogimenos
alkis at cs.uiuc.edu
Sat Oct 30 05:52:41 PDT 2004
Changes in directory llvm-java/test:
Makefile.test updated: 1.15 -> 1.16
---
Log message:
Adjust to recent changes.
---
Diffs of the changes: (+11 -11)
Index: llvm-java/test/Makefile.test
diff -u llvm-java/test/Makefile.test:1.15 llvm-java/test/Makefile.test:1.16
--- llvm-java/test/Makefile.test:1.15 Wed Sep 15 19:14:45 2004
+++ llvm-java/test/Makefile.test Sat Oct 30 07:52:30 2004
@@ -12,8 +12,8 @@
.PHONY: clean
clean::
- $(RM) -f a.out core
- $(RM) -rf Output/
+ $(Verb)$(RM) -f a.out core
+ $(Verb)$(RM) -rf Output/
# we don't want these files to be deleted by make, even if they are
# intermediate results
@@ -21,24 +21,24 @@
#rule to link in runtime to raw bytecode
%.linked.bc: %.raw.bc $(DESTLIBBYTECODE)/libjrt.bc
- @$(ECHO) Linking $< with the Java runtime
- $(LLVMTOOLCURRENT)/llvm-link$(EXEEXT) $^ -o - | \
- $(LOPT) -simplifycfg -mem2reg -instcombine > $@
+ $(Echo) Linking $< with the Java runtime
+ $(Verb)$(LLVMTOOLCURRENT)/llvm-link$(EXEEXT) $^ -o - | \
+ $(Verb)$(LOPT) -simplifycfg -mem2reg -instcombine > $@
# rule to make assembly from bytecode
%.dis-ll: %.bc
- @$(ECHO) Disassembling $<
- $(LDIS) < $< > $@
+ $(ECHO) Disassembling $<
+ $(Verb)$(LDIS) < $< > $@
# rule to compile java source
Output/%.class: %.java Output/.dir
- @$(ECHO) Compiling $<
- $(JAVAC) -d Output $<
+ $(ECHO) Compiling $<
+ $(Verb)$(JAVAC) -d Output $<
# rule to run a .class file with the jvm
%.out-nat: %.class
- $(JAVA) -cp Output $(subst /,.,$(subst Output/,,$*)) > $*.out-nat || rm -f $*.out-nat
+ $(Verb)$(JAVA) -cp Output $(subst /,.,$(subst Output/,,$*)) > $*.out-nat || rm -f $*.out-nat
# rule to run a .class file with the llvm jit
%.out-jit: %.llvm.bc
- $(LLI) $< > $*.out-nat || rm -f $*.out-nat
+ $(Verb)$(LLI) $< > $*.out-nat || rm -f $*.out-nat
More information about the llvm-commits
mailing list