[llvm-commits] CVS: llvm/projects/Stacker/samples/Makefile
Reid Spencer
reid at x10sys.com
Sat Oct 30 02:26:32 PDT 2004
Changes in directory llvm/projects/Stacker/samples:
Makefile updated: 1.7 -> 1.8
---
Log message:
Change macro names per naming standard in Makefile.rules.
---
Diffs of the changes: (+5 -5)
Index: llvm/projects/Stacker/samples/Makefile
diff -u llvm/projects/Stacker/samples/Makefile:1.7 llvm/projects/Stacker/samples/Makefile:1.8
--- llvm/projects/Stacker/samples/Makefile:1.7 Fri Oct 29 01:42:38 2004
+++ llvm/projects/Stacker/samples/Makefile Sat Oct 30 04:26:22 2004
@@ -20,12 +20,12 @@
ifdef OPTIMIZE
% : %.st
- @$(ECHO) "Compiling and Optimizing $(<F)"
- $(VERB)$(LLVMC_EXEC) -O3 $< -o $@
+ $(Echo) "Compiling and Optimizing $(<F)"
+ $(Verb)$(LLVMC_EXEC) -O3 $< -o $@
else
% : %.st
- @$(ECHO) "Compiling $(<F)"
- $(VERB)$(LLVMC_EXEC) $< -o $@
+ $(Echo) "Compiling $(<F)"
+ $(Verb)$(LLVMC_EXEC) $< -o $@
endif
SAMPLES_LL = $(SAMPLES:%=%.ll)
@@ -33,7 +33,7 @@
SAMPLES_S = $(SAMPLES:%=%.s)
clean ::
- $(VERB)rm -f gmon.out $(SAMPLES)
+ $(Verb)rm -f gmon.out $(SAMPLES)
#
# Include the Master Makefile that knows how to build all.
#
More information about the llvm-commits
mailing list